Searched defs:cJSON (Results 1 – 1 of 1) sorted by relevance
46 typedef struct cJSON { struct47 struct cJSON *next, *prev; /* next/prev allow you to walk array/object argument50 struct cJSON *child; /* An array or object item will have a child pointer argument56 char *valuestring; /* The item's string, if type==cJSON_String */ argument57 int valueint; /* The item's number, if type==cJSON_Number */ argument58 double valuedouble; /* The item's number, if type==cJSON_Number */ argument62 } cJSON; argument