CE edit command
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m11s

This commit is contained in:
2026-03-05 16:29:59 +01:00
parent a5f5dbf21f
commit 25b289ccfb
11 changed files with 316 additions and 30 deletions

16
ce/walloc.h Normal file
View File

@@ -0,0 +1,16 @@
#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