Internal constructor. */
| 90 | |
| 91 | /* Internal constructor. */ |
| 92 | static cJSON *cJSON_New_Item() |
| 93 | { |
| 94 | cJSON* node = (cJSON*) cJSON_malloc(sizeof(cJSON)); |
| 95 | if (node) |
| 96 | memset(node, 0, sizeof(cJSON)); |
| 97 | return node; |
| 98 | } |
| 99 | |
| 100 | /* Delete a cJSON structure. */ |
| 101 | void cJSON_Delete(cJSON *c) |
no outgoing calls
no test coverage detected