#include <stddef.h>
Go to the source code of this file.
◆ YAJL_API
◆ YAJL_MAX_DEPTH
#define YAJL_MAX_DEPTH 128 |
◆ yajl_free_func
typedef void(* yajl_free_func) (void *ctx, void *ptr) |
pointer to a free function, supporting client overriding memory allocation routines
◆ yajl_malloc_func
typedef void*(* yajl_malloc_func) (void *ctx, size_t sz) |
pointer to a malloc function, supporting client overriding memory allocation routines
◆ yajl_realloc_func
typedef void*(* yajl_realloc_func) (void *ctx, void *ptr, size_t sz) |
pointer to a realloc function which can resize an allocation.