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