tgrekov-libft
HIVE libft Oct 2023
Loading...
Searching...
No Matches
ft_isalpha.c
Go to the documentation of this file.
1
/* ************************************************************************** */
2
/* */
3
/* ::: :::::::: */
4
/* ft_isalpha.c :+: :+: :+: */
5
/* +:+ +:+ +:+ */
6
/* By: tgrekov <tgrekov@student.hive.fi> +#+ +:+ +#+ */
7
/* +#+#+#+#+#+ +#+ */
8
/* Created: 2023/10/23 12:47:27 by tgrekov #+# #+# */
9
/* Updated: 2023/11/04 22:24:44 by tgrekov ### ########.fr */
10
/* */
11
/* ************************************************************************** */
12
27
int
ft_isalpha
(
int
c)
28
{
29
return
((c >=
'A'
&& c <=
'Z'
) || (c >=
'a'
&& c <=
'z'
));
30
}
ft_isalpha
int ft_isalpha(int c)
Is c an alphabetical character.
Definition
ft_isalpha.c:27
ft_isalpha.c