11 lines
152 B
C
11 lines
152 B
C
|
#ifndef _LIBFT_H
|
||
|
# define _LIBFT_H
|
||
|
|
||
|
# include <stddef.h>
|
||
|
# include <stdlib.h>
|
||
|
|
||
|
char *ft_strdup(const char *s);
|
||
|
size_t ft_strlen(const char *s);
|
||
|
|
||
|
#endif
|