| 77 | } json_state; |
| 78 | |
| 79 | static void * default_alloc (size_t size, int zero, void * user_data) |
| 80 | { |
| 81 | return zero ? calloc (1, size) : malloc (size); |
| 82 | } |
| 83 | |
| 84 | static void default_free (void * ptr, void * user_data) |
| 85 | { |
nothing calls this directly
no outgoing calls
no test coverage detected