ft_isvalidname - kibotrel/42-Libft GitHub Wiki
int ft_isvalidname(char *filename, char *reference)
Description :
Checks if the given string filename
is finished by the string reference
.
Return Value :
Returns 1
if filename
is finished by reference
otherwise 0
is returned.