18 lines
997 B
C
18 lines
997 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_strequ.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/11/03 14:58:04 by jhalford #+# #+# */
|
|
/* Updated: 2016/11/03 15:02:10 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_strequ(char const *s1, char const *s2)
|
|
{
|
|
return (ft_strcmp(s1, s2) == 0);
|
|
}
|