ft_strncmp: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-16 13:47:09 +02:00
parent 10cf338cbf
commit b176bdaebe
3 changed files with 53 additions and 3 deletions

View file

@ -6,7 +6,7 @@
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 10:11:54 by kcolin #+# #+# */
/* Updated: 2024/10/16 10:34:08 by kcolin ### ########.fr */
/* Updated: 2024/10/16 13:23:08 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
@ -35,5 +35,6 @@ int ft_tolower(int c);
char *ft_strchr(const char *s, int c);
char *ft_strrchr(const char *s, int c);
int ft_strncmp(const char *s1, const char *s2, t_size n);
#endif