🧱 ft_tolower


📂 Category

Char Functions (ctype.h)

📁 Repository

LIB_FT

📝 File

ft_tolower.c


⚠️ Educational Warning

This material is for educational purposes only. Use it to understand concepts and develop your own solutions.


🖥️ Prototype


int ft_tolower(int c);

💡 Note

Converts an uppercase letter to lowercase.


🧱 Description

If the character is uppercase (A-Z), converts it to lowercase (a-z). Otherwise, returns the character unchanged.