-
Notifications
You must be signed in to change notification settings - Fork 4
/
ft_strncmp.c
18 lines (16 loc) · 1005 Bytes
/
ft_strncmp.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncmp.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aalvarez <aalvarez@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/21 13:02:17 by aalvarez #+# #+# */
/* Updated: 2024/06/21 13:02:43 by aalvarez ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_strncmp(const char *s1, const char *s2, size_t n)
{
return (ft_memcmp(s1, s2, n));
}