Internal constructor. */
| 71 | |
| 72 | /* Internal constructor. */ |
| 73 | static cJSON *cJSON_New_Item(void) |
| 74 | { |
| 75 | cJSON* node = (cJSON*)cJSON_malloc(sizeof(cJSON)); |
| 76 | if (node) memset(node,0,sizeof(cJSON)); |
| 77 | return node; |
| 78 | } |
| 79 | |
| 80 | /* Delete a cJSON structure. */ |
| 81 | void cJSON_Delete(cJSON *c) |
no outgoing calls
no test coverage detected