-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_isalpha.c
More file actions
16 lines (15 loc) · 978 Bytes
/
Copy pathft_isalpha.c
File metadata and controls
16 lines (15 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kjungoo <kjungoo@student.42seoul.kr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/11 15:23:54 by kjungoo #+# #+# */
/* Updated: 2022/07/13 16:02:19 by kjungoo ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isalpha(int c)
{
return (('A' <= c && c <= 'Z') || ('a' <= c && c <= 'z'));
}