mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-02-02 01:08:14 +00:00
35 lines
712 B
C
35 lines
712 B
C
typedef enum json_type {
|
|
JSON_HASH, JSON_ARRAY, JSON_NUMBER, JSON_STRING, JSON_TRUE, JSON_FALSE, JSON_NULL,
|
|
} json_type;
|
|
|
|
typedef struct json_object {
|
|
json_type type;
|
|
struct json_object *parent;
|
|
|
|
char *string;
|
|
double number;
|
|
|
|
struct json_object **array;
|
|
struct json_object **keys;
|
|
struct json_object **values;
|
|
int length;
|
|
|
|
int expect;
|
|
} json_object;
|
|
|
|
struct json_pull {
|
|
json_object *container;
|
|
char *error;
|
|
|
|
int (*read)(struct json_pull *);
|
|
int (*peek)(struct json_pull *);
|
|
void *source;
|
|
};
|
|
typedef struct json_pull json_pull;
|
|
|
|
json_pull *json_begin_file(FILE *f);
|
|
json_pull *json_begin_string(char *s);
|
|
json_object *json_parse(json_pull *j);
|
|
|
|
json_object *json_hash_get(json_object *o, char *s);
|