-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isalpha.c
16 lines (15 loc) · 982 Bytes
/
ft_isalpha.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kacoulib <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/16 15:51:40 by kacoulib #+# #+# */
/* Updated: 2016/11/16 15:54:52 by kacoulib ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isalpha(int c)
{
return (((c > 64 && c < 91) || (c > 96 && c < 123)) ? 1 : 0);
}