Searched defs:cJSON (Results 1 – 3 of 3) sorted by relevance
103 typedef struct cJSON struct106 struct cJSON *next; argument107 struct cJSON *prev; argument109 struct cJSON *child; argument123 } cJSON; argument
43 typedef struct cJSON { struct44 …struct cJSON *next,*prev; /* next/prev allow you to walk array/object chains. Alternatively, use G… argument45 …struct cJSON *child; /* An array or object item will have a child pointer pointing to a chain of … argument49 char *valuestring; /* The item's string, if type==cJSON_String */ argument50 int valueint; /* The item's number, if type==cJSON_Number */ argument51 double valuedouble; /* The item's number, if type==cJSON_Number */ argument54 } cJSON; argument
98 typedef struct cJSON struct101 struct cJSON *next; argument102 struct cJSON *prev; argument104 struct cJSON *child; argument118 } cJSON; argument