tgrekov-libft
HIVE libft Oct 2023
|
Definition in file ft_isalpha.c.
Go to the source code of this file.
Functions | |
int | ft_isalpha (int c) |
Is c an alphabetical character. | |
int ft_isalpha | ( | int | c | ) |
Is c
an alphabetical character.
[in] | c | Character to test |
int | 1 if c is within either of the ranges A - Z or a - z , otherwise 0 |
Definition at line 27 of file ft_isalpha.c.