From 9e9901a3bb78e043af22d1563f7c2defe936103a Mon Sep 17 00:00:00 2001 From: NukeBird Date: Mon, 24 Nov 2025 21:48:00 +0300 Subject: [PATCH] axl_memcpy declaration --- axl_memory.h | 1 + 1 file changed, 1 insertion(+) diff --git a/axl_memory.h b/axl_memory.h index 1d6b5b7..e1c0fc3 100644 --- a/axl_memory.h +++ b/axl_memory.h @@ -11,6 +11,7 @@ void axl_init(void); void* axl_malloc(u32 size); void* axl_realloc(void* ptr, u32 size); void* axl_memset(void* ptr, i8 c, u32 n); +void* axl_memcpy(void* dst, const void* src, u32 count); void axl_free(void* ptr); #endif