Internal constructor. */
| 78 | |
| 79 | /* Internal constructor. */ |
| 80 | static cJSON *cJSON_New_Item() |
| 81 | { |
| 82 | cJSON* node = static_cast<cJSON*> (cJSON_malloc(sizeof(cJSON))); |
| 83 | if (node) { |
| 84 | *node = cJSON{}; |
| 85 | } |
| 86 | return node; |
| 87 | } |
| 88 | |
| 89 | /* Delete a cJSON structure. */ |
| 90 | void cJSON_Delete(cJSON *c) |
no outgoing calls
no test coverage detected