42-archive/libftasm/ft_strnequ.c
2016-08-28 16:33:44 +02:00

6 lines
119 B
C

#include "libft.h"
int ft_strnequ(char const *s1, char const *s2, size_t n)
{
return(ft_strncmp(s1, s2, n) == 0);
}