diff options
author | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2019-10-30 15:00:17 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2019-10-30 15:00:17 +0100 |
commit | a3f3fc742daa4b28094b5ebe9be60263c41979d1 (patch) | |
tree | 5a6ce0fba04b55d6f4607038eeace0396e97f0e6 /libft/inc/libft.h | |
parent | commit, lotta stuff (diff) | |
download | 42-minishell-a3f3fc742daa4b28094b5ebe9be60263c41979d1.tar.gz 42-minishell-a3f3fc742daa4b28094b5ebe9be60263c41979d1.tar.bz2 42-minishell-a3f3fc742daa4b28094b5ebe9be60263c41979d1.tar.xz 42-minishell-a3f3fc742daa4b28094b5ebe9be60263c41979d1.tar.zst 42-minishell-a3f3fc742daa4b28094b5ebe9be60263c41979d1.zip |
New libft, feelsgoodman
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 |