mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
21 lines
268 B
C
21 lines
268 B
C
|
|
struct jv_parser {
|
|
jv* stack;
|
|
int stackpos;
|
|
int stacklen;
|
|
jv next;
|
|
int hasnext;
|
|
|
|
char* tokenbuf;
|
|
int tokenpos;
|
|
int tokenlen;
|
|
|
|
struct dtoa_context dtoa;
|
|
|
|
enum {
|
|
JV_PARSER_NORMAL,
|
|
JV_PARSER_STRING,
|
|
JV_PARSER_STRING_ESCAPE
|
|
} st;
|
|
};
|