Reformat with 2-space indents
[yaz4j-moved-to-github.git] / src / main / native / zoom-extra.cpp
1 #include "zoom-extra.h"
2 #include <string.h>
3
4 struct CharStarByteArray ZOOM_record_get_bytes(ZOOM_record rec, const char *type) {
5     struct CharStarByteArray node;
6     node.data = ZOOM_record_get(rec, type, &node.length);
7     return node;
8 }