🧱 ft_isdigit


📂 Category

Char Functions (ctype.h)

📁 Repository

LIB_FT

📝 File

ft_isdigit.c


⚠️ Educational Warning

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


🖥️ Prototype


int ft_isdigit(int c);


💡 Note

Checks if the character is a digit (0-9).


🧱 Description

Tests whether the character code corresponds to a digit character.