ft_strncmp
This commit is contained in:
4
libft.h
4
libft.h
@@ -6,7 +6,7 @@
|
||||
/* By: tmaze <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2018/04/04 10:40:01 by tmaze #+# #+# */
|
||||
/* Updated: 2018/04/05 11:39:51 by tmaze ### ########.fr */
|
||||
/* Updated: 2018/04/05 13:11:35 by tmaze ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@@ -39,7 +39,7 @@ char *ft_strrchr(const char *s, int c);
|
||||
char *ft_strstr(const char *haystack, const char *needle);
|
||||
char *ft_strnstr(const char *haystack, const char *needle, size_t len);
|
||||
int ft_strcmp(const char *s1, const char *s2);
|
||||
int ft_strncmp(const char *s1, const char *s2);
|
||||
int ft_strncmp(const char *s1, const char *s2, size_t n);
|
||||
int ft_atoi(const char *nptr);
|
||||
int ft_isalpha(int c);
|
||||
int ft_isdigit(int c);
|
||||
|
Reference in New Issue
Block a user