| 3100 | } |
| 3101 | |
| 3102 | CJSON_PUBLIC(void *) cJSON_malloc(size_t size) |
| 3103 | { |
| 3104 | return global_hooks.allocate(size); |
| 3105 | } |
| 3106 | |
| 3107 | CJSON_PUBLIC(void) cJSON_free(void *object) |
| 3108 | { |
nothing calls this directly
no outgoing calls
no test coverage detected