| 104 | { |
| 105 | /* next/prev allow you to walk array/object chains. Alternatively, use GetArraySize/GetArrayItem/GetObjectItem */ |
| 106 | struct cJSON *next; |
| 107 | struct cJSON *prev; |
| 108 | /* An array or object item will have a child pointer pointing to a chain of the items in the array/object. */ |
| 109 | struct cJSON *child; |
nothing calls this directly
no outgoing calls
no test coverage detected