#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