/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strequ.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: scebula +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/26 10:53:27 by scebula #+# #+# */ /* Updated: 2015/11/26 10:54:39 by scebula ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_strequ(char const *s1, char const *s2) { if (ft_strcmp(s1, s2) == 0) return (1); return (0); }