From 4f62899af7e97501ec081f9268d80ebf87150c2a Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Fri, 10 May 2024 23:27:08 +0200 Subject: Begin work on custom allocators in dynarr.h --- include/dynarr.h | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/dynarr.h b/include/dynarr.h index 7edb035..52cacc5 100644 --- a/include/dynarr.h +++ b/include/dynarr.h @@ -3,9 +3,22 @@ #include +#include "_alloc_fn.h" #include "alloc.h" -#define dynarr(T) struct { T *buf; size_t len, cap; } +#define dynarr(T) \ + struct { \ + T *buf; \ + size_t len, cap; \ + alloc_fn alloc; \ + void *ctx; \ + } + +void *dapush(void *, void *, size_t, size_t); + +#define dapush(da, ...) \ + dapush((da), ((typeof(__VA_ARGS__)[1]){__VA_ARGS__}), sizeof(__VA_ARGS__), \ + alignof(__VA_ARGS__)) #define DAGROW(da, n) \ do { \ -- cgit v1.2.3