ft_strequ - kibotrel/42-Libft GitHub Wiki
int ft_strequ(char const *s1, char const *s2)
Description :
Checks if the given strings s1
and s2
are identical.
Return Value :
Returns 1
if both strings are identical or 0
if they are different.