fix: formatting

This commit is contained in:
2026-05-26 12:58:36 -06:00
parent 83a8100388
commit dc67377a11
3 changed files with 25 additions and 23 deletions

View File

@@ -8,13 +8,13 @@ typedef struct Allocator Allocator;
Allocator allocator_default(void);
struct Allocator {
void *ctx;
void* ctx;
void *(*alloc)(void *ctx, size_t size);
void* (*alloc)(void* ctx, size_t size);
void *(*realloc)(void *ctx, void *ptr, size_t old_size, size_t new_size);
void* (*realloc)(void* ctx, void* ptr, size_t old_size, size_t new_size);
void (*free)(void *ctx, void *ptr, size_t size);
void (*free)(void* ctx, void* ptr, size_t size);
};
#endif