-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isalpha.c
20 lines (19 loc) · 1.02 KB
/
ft_isalpha.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: erli <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/07 17:42:37 by erli #+# #+# */
/* Updated: 2018/11/07 17:45:35 by erli ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isalpha(int c)
{
if (c >= (int)('a') && c <= (int)('z'))
return (1);
if (c >= (int)('A') && c <= (int)('Z'))
return (1);
return (0);
}