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