Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Libft - Parte 1

ft_tolower

int	ft_tolower(int c)
{
	if (c >= 'A' && c <= 'Z')
		c = c + 32;
	return (c);
}

ft_isalpha

int	ft_isalpha(int c)
{
	if ((c >= 'A' && c <= 'Z') || (c >= 'a' && x <= 'z'))
		return (1);
	return (0);
}

Tabla de contenidos