diff options
Diffstat (limited to '')
-rw-r--r-- | libft/inc/libft.h (renamed from libft/libft.h) | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libft/libft.h b/libft/inc/libft.h index 3ce9b07..83a0177 100644 --- a/libft/libft.h +++ b/libft/inc/libft.h @@ -75,8 +75,6 @@ typedef struct s_list struct s_list *next; } t_list; -# define BUFFER_SIZE 30 - t_list *ft_lstnew(void *content); void ft_lstadd_front(t_list **alst, t_list *new); int ft_lstsize(t_list *lst); @@ -95,5 +93,6 @@ char *ft_strcat(char *s1, const char *s2); uint8_t ft_isspace(int c); int ft_strcmp(const char *s1, const char *s2); double ft_sqrt(double x); +size_t ft_strnlen(const char *s, size_t size); # endif |