#include "libft.h" int ft_strequ(char const *s1, char const *s2) { return(ft_strcmp(s1, s2) == 0); }