uriparser 0.9.8
|
#include <UriBase.h>
Data Fields | |
UriFuncMalloc | malloc |
UriFuncCalloc | calloc |
UriFuncRealloc | realloc |
UriFuncReallocarray | reallocarray |
UriFuncFree | free |
void * | userData |
Class-like interface of custom memory managers
UriFuncCalloc calloc |
Pointer to custom calloc(3); to emulate using malloc and memset see uriEmulateCalloc
UriFuncFree free |
Pointer to custom free(3)
UriFuncMalloc malloc |
Pointer to custom malloc(3)
UriFuncRealloc realloc |
Pointer to custom realloc(3)
UriFuncReallocarray reallocarray |
Pointer to custom reallocarray(3); to emulate using realloc see uriEmulateReallocarray
void* userData |
Pointer to data that the other function members need access to