27 static void * yajl_internal_malloc(
void *ctx,
size_t sz)
32 static void * yajl_internal_realloc(
void *ctx,
void * previous,
35 return realloc(previous, sz);
38 static void yajl_internal_free(
void *ctx,
void * ptr)
45 yaf->
malloc = yajl_internal_malloc;
46 yaf->
free = yajl_internal_free;
47 yaf->
realloc = yajl_internal_realloc;
Memory allocation macros for yajl.
void yajl_set_default_alloc_funcs(yajl_alloc_funcs *yaf)
yajl_realloc_func realloc