-
Notifications
You must be signed in to change notification settings - Fork 0
/
json.h
72 lines (56 loc) · 1.74 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
#ifndef Q_JSON_H
#define Q_JSON_H
#include <qute/qute.h>
struct json_value;
enum {
JSON_NULL,
JSON_ARRAY,
JSON_STRING,
JSON_NUMBER,
JSON_OBJECT,
JSON_BOOLEAN,
};
enum {
EJSON_OK = 0,
EJSON_MEM,
EJSON_PARSE,
EJSON_TOKEN,
EJSON_PARSERMEM,
};
#define JSON_MAX_VALUES 0xffff
#define JSON_MAX_DEPTH 0xfff
#define JSON_VALUE_FIELDS \
int type; \
int errno; \
int index; \
int truthy; \
int arraylike; \
size_t size; \
const char *id; \
q_node_t *current; \
struct json_value *next; \
struct json_value *prev; \
struct json_value *parent; \
struct json_value *values[JSON_MAX_VALUES]; \
struct { \
const char *string; \
float number; \
} as; \
typedef struct json_value {
JSON_VALUE_FIELDS;
} json_value_t;
json_value_t *
json_parse (const char *, const char *);
json_value_t *
json_new (int, const char *);
void
json_destroy (json_value_t *);
char *
json_stringify (json_value_t *);
json_value_t *
json_get (json_value_t *, const char *);
void
json_set (json_value_t *, const char *, json_value_t *);
void
json_perror (json_value_t *);
#endif