aboutsummaryrefslogtreecommitdiff
path: root/ft_strequ.c
blob: bd2469c7dd97933cb2c8869a1056d7ba06bdd655 (plain)
1
2
3
4
5
6
#include "libft.h"

int ft_strequ(char const *s1, char const *s2)
{
    return (ft_strcmp(s1, s2) == 0);
}