| 66 | } cJSON; |
| 67 | |
| 68 | typedef struct cJSON_Hooks |
| 69 | { |
| 70 | void *(*malloc_fn)(size_t sz); |
| 71 | void (*free_fn)(void *ptr); |
| 72 | } cJSON_Hooks; |
| 73 | |
| 74 | /* Supply malloc, realloc and free functions to cJSON */ |
| 75 | extern void cJSON_InitHooks(cJSON_Hooks* hooks); |
nothing calls this directly
no outgoing calls
no test coverage detected