Char Functions (ctype.h
)
LIB_FT
ft_tolower.c
This material is for educational purposes only. Use it to understand concepts and develop your own solutions.
int ft_tolower(int c);
Converts an uppercase letter to lowercase.
If the character is uppercase (A-Z), converts it to lowercase (a-z). Otherwise, returns the character unchanged.