1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Add -I / --online-input for huge top-level arrays

This commit is contained in:
Nicolas Williams
2013-11-29 17:41:04 -06:00
parent 4e07eac356
commit 77936a594d
4 changed files with 31 additions and 11 deletions

3
jv.h
View File

@@ -130,6 +130,9 @@ void jv_nomem_handler(jv_nomem_handler_f, void *);
jv jv_load_file(const char *, int);
typedef enum {
JV_PARSE_EXPLODE_TOPLEVEL_ARRAY = 1
} jv_parser_flags;
struct jv_parser;
struct jv_parser* jv_parser_new();
void jv_parser_set_buf(struct jv_parser*, const char*, int, int);