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