Searched defs:cJSON (Results 1 - 1 of 1) sorted by relevance

/external/vulkan-validation-layers/libs/cjson/includes/
H A DcJSON.h33 /* cJSON Types: */
45 /* The cJSON structure: */
46 typedef struct cJSON { struct
47 struct cJSON *next, *prev; /* next/prev allow you to walk array/object
50 struct cJSON *child; /* An array or object item will have a child pointer
62 } cJSON; typedef in typeref:struct:cJSON
69 /* Supply malloc, realloc and free functions to cJSON */
72 /* Supply a block of JSON, and this returns a cJSON object you can interrogate.
74 extern cJSON *cJSON_Parse(const char *value);
75 /* Render a cJSON entit
[all...]

Completed in 215 milliseconds