aboutsummaryrefslogtreecommitdiff
path: root/include/libft_mem.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libft_mem.h')
-rw-r--r--include/libft_mem.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/libft_mem.h b/include/libft_mem.h
index a15c020..e03b6fa 100644
--- a/include/libft_mem.h
+++ b/include/libft_mem.h
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/31 10:35:57 by cacharle #+# #+# */
-/* Updated: 2020/02/13 03:11:09 by cacharle ### ########.fr */
+/* Updated: 2020/08/01 15:28:15 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -14,6 +14,7 @@
# define LIBFT_MEM_H
# include <stddef.h>
+# include <stdlib.h>
# include "libft_types.h"
void ft_bzero(void *s, size_t n);
@@ -30,6 +31,8 @@ void *ft_memmem(const void *big, size_t big_len,
void ft_memset_pattern4(void *b, const void *pattern4,
size_t len);
+void *ft_realloc(void *ptr, size_t ptr_size, size_t size);
+
/*
** bloat ?
*/