ft_strncmp

This commit is contained in:
Tanguy MAZE
2018-04-05 13:46:11 +02:00
parent 2446ae93b8
commit 9e7312327a
3 changed files with 32 additions and 3 deletions

View File

@@ -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);