libft2/inc/libft.h

11 lines
152 B
C
Raw Normal View History

2024-03-13 14:25:43 +00:00
#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