blob: 070ff6a67eea2a6bdac3c78fe0edd002c4f12fe9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/10/07 09:54:52 by cacharle #+# #+# */
/* Updated: 2019/10/07 09:54:57 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isalpha(int c)
{
return ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));
}
|