From 6944f48d30a581d437bc2c8f873a499291412bb7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 7 Feb 2021 00:51:32 +0100 Subject: Many small memory improvements --- libc/inc/mem.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libc/inc') diff --git a/libc/inc/mem.h b/libc/inc/mem.h index a01c9a2..e35ee62 100644 --- a/libc/inc/mem.h +++ b/libc/inc/mem.h @@ -5,6 +5,8 @@ #include +int malloc_allocated; + void *malloc_debug(u32 size, const char *file, int line, const char *func, const char *inp); void free_debug(void *ptr, const char *file, int line, const char *func, const char *inp); #define malloc(size) malloc_debug(size, __FILE__, __LINE__, __func__, #size) @@ -26,5 +28,6 @@ void *memcpy(void *dest, const void *src, u32 n); void *memset(void *dest, int val, u32 n); void *memchr(void *src, int c, u32 n); int memcmp(const void *s1, const void *s2, u32 n); +int mememp(const u8 *buf, u32 n); #endif -- cgit v1.2.3