-
Notifications
You must be signed in to change notification settings - Fork 0
/
json.h
executable file
·74 lines (58 loc) · 1.46 KB
/
json.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#ifndef _JSON_H_
#define _JSON_H_
typedef struct json_item JSONItem;
typedef struct json_list JSONList;
typedef struct json_object JSONObject;
typedef struct json_decode_state JSONDecodeState;
struct json_item {
enum json_types {
JSON_NULL,
JSON_BOOLEAN,
JSON_NUMBER,
JSON_STRING,
JSON_LIST,
JSON_OBJECT
} type;
union {
unsigned int boolean : 1;
char *string;
JSONList *list;
JSONObject *object;
} value;
};
struct json_list {
JSONItem *item;
JSONList *next;
};
struct json_object {
char *key;
JSONItem *value;
JSONObject *next;
};
struct json_decode_state {
JSONItem *root;
int line;
int offset;
char *token;
};
JSONItem *json_decode(const char *);
JSONDecodeState *json_decode_state(const char *);
char *json_encode(JSONItem *);
JSONItem *json_create(enum json_types);
JSONItem *json_create_string(char *);
JSONItem *json_create_boolean(unsigned int);
JSONItem *json_create_number(double);
JSONItem *json_create_number_str(char *);
double json_number(JSONItem *);
#define JSON_LIST_LAST -1
void json_list_add(JSONItem *, JSONItem *);
void json_list_insert(JSONItem *, JSONItem *, int);
void json_list_delete(JSONItem *, int);
int json_list_count(JSONItem *);
JSONItem *json_list_get(JSONItem *, int);
void json_object_set(JSONItem *, char *, JSONItem *);
JSONItem *json_object_get(JSONItem *, char *);
void json_object_delete(JSONItem *, char *);
void json_free(JSONItem *);
void json_dump(JSONItem *);
#endif /* _JSON_H_ */