malloc/inc/ft_malloc.h

12 lines
199 B
C
Raw Normal View History

2019-04-24 20:59:37 +03:00
#ifndef FT_MALLOC_H
# define FT_MALLOC_H
2019-04-26 12:55:55 +03:00
# include <stddef.h>
void free(void *ptr);
void *malloc(size_t size);
void *realloc(void *ptr, size_t size);
2019-05-04 20:23:32 +03:00
void show_alloc_mem(void);
2019-04-24 20:59:37 +03:00
#endif