From 3491d89a86eba805c3f42543a431cae33bae146b Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Sun, 29 Jan 2023 20:33:51 +0100 Subject: [PATCH] declared why2_calloc & why2_free --- include/memory.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/memory.h b/include/memory.h index c609db1..1f4a3da 100644 --- a/include/memory.h +++ b/include/memory.h @@ -2,5 +2,8 @@ #define WHY2_MEMORY_H void *why2_malloc(unsigned long size); +void *why2_calloc(unsigned long element, unsigned long size); + +void why2_free(void *pointer); #endif \ No newline at end of file