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