-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathft_isalpha.c
16 lines (15 loc) · 979 Bytes
/
ft_isalpha.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rlambert <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/04 15:58:40 by rlambert #+# #+# */
/* Updated: 2014/11/06 19:19:44 by rlambert ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isalpha(int c)
{
return (('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z'));
}