diff options
Diffstat (limited to 'src/std/mem.c')
-rw-r--r-- | src/std/mem.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/std/mem.c b/src/std/mem.c index 4a4454a..a537330 100644 --- a/src/std/mem.c +++ b/src/std/mem.c @@ -126,3 +126,10 @@ void void_pool_dealloc(void_pool* pool, u32 raw_handle) { pool->count--; } + +u32 void_pool_insert(void_pool* pool, void* item) { + u32 raw_handle; + void* item_dest = void_pool_alloc(pool, &raw_handle); + memcpy(item_dest, item, pool->entry_size); + return raw_handle; +}
\ No newline at end of file |