10 lines
169 B
C
10 lines
169 B
C
#ifndef FT_MALLOC_H
|
|
# define FT_MALLOC_H
|
|
|
|
# include <stddef.h>
|
|
|
|
void free(void *ptr);
|
|
void *malloc(size_t size);
|
|
void *realloc(void *ptr, size_t size);
|
|
|
|
#endif
|