Char Functions (ctype.h
)
LIB_FT
ft_isdigit.c
This material is for educational purposes only. Use it to understand concepts and develop your own solutions.
int ft_isdigit(int c);
Checks if the character is a digit (0-9).
Tests whether the character code corresponds to a digit character.