-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_isalpha.c
More file actions
15 lines (15 loc) · 970 Bytes
/
ft_isalpha.c
File metadata and controls
15 lines (15 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: youngcch <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/15 19:20:32 by youngcch #+# #+# */
/* Updated: 2023/03/17 22:51:46 by youngcch ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isalpha(int c)
{
return ((c > 64 && c < 91) || (c > 96 && c < 123));
}