All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m11s
17 lines
357 B
C
17 lines
357 B
C
#ifndef _WALLOC_H
|
|
#define _WALLOC_H
|
|
|
|
void* wmalloc (void* ctx, size_t size);
|
|
|
|
void* wrealloc (void* ctx, void* mem, size_t old, size_t new);
|
|
|
|
void wfree (void* ctx, void* mem);
|
|
|
|
void* warena_malloc (void* ctx, size_t size);
|
|
|
|
void* warena_realloc (void* ctx, void* mem, size_t old, size_t new);
|
|
|
|
void warena_free (void* ctx, void* mem);
|
|
|
|
#endif // _WALLOC_H
|