Files
libft/ft_tolower.c
Loïc GUEZO 9492262e6b feat: add ft_tolower function
also change header comments
2025-10-08 10:05:51 +02:00

9 lines
97 B
C

#include "libft.h"
int ft_tolower(int c)
{
if ('A' <= c && c <= 'Z')
c += 32;
return (c);
}