🧱 ft_isalpha


📂 Category

Char Functions (ctype.h)

📁 Repository

LIB_FT

📝 File

ft_isalpha.c


⚠️ Educational Warning

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


🖥️ Prototype


int ft_isalpha(int c);

💡 Note

Checks if the character is an alphabetic letter (A-Z or a-z).


🧱 Description

The ft_isalpha function tests whether the given character is a letter (either uppercase or lowercase).