libft/srcs/ft_tolower.c

8 lines
No EOL
104 B
C

#include "libft.h"
int ft_tolower(int c)
{
if (ft_isupper(c))
c = c + 32;
return (c);
}