| 53 | typedef struct cJSON |
| 54 | { |
| 55 | struct cJSON *next, *prev; /* next/prev allow you to walk array/object chains. Alternatively, use GetArraySize/GetArrayItem/GetObjectItem */ |
| 56 | struct cJSON *child; /* An array or object item will have a child pointer pointing to a chain of the items in the array/object. */ |
| 57 | |
| 58 | int type; /* The type of the item, as above. */ |
nothing calls this directly
no outgoing calls
no test coverage detected