cctools
json_aux.h
1 #ifndef JSON_AUX_H
2 #define JSON_AUX_H
3 
4 #include "json.h"
5 
6 #define jistype(o,t) ((o)->type == (t))
7 
8 json_value *jsonA_getname (json_value *object, const char *name, json_type t);
9 
10 extern const char json_type_str[][10];
11 
12 #endif
Definition: json.h:90