18 lines
293 B
C
18 lines
293 B
C
|
|
#pragma once
|
|
|
|
/* JSON_checker.h */
|
|
|
|
typedef struct JSON_checker_struct {
|
|
int state;
|
|
int depth;
|
|
int top;
|
|
int* stack;
|
|
} * JSON_checker;
|
|
|
|
|
|
JSON_checker new_JSON_checker(int depth);
|
|
bool JSON_checker_char(JSON_checker jc, int next_char);
|
|
bool JSON_checker_done(JSON_checker jc);
|
|
|