-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_isalpha.c
More file actions
18 lines (17 loc) · 1000 Bytes
/
ft_isalpha.c
File metadata and controls
18 lines (17 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_isalpha.c :+: :+: */
/* +:+ */
/* By: jaberkro <jaberkro@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2021/10/18 20:19:54 by jaberkro #+# #+# */
/* Updated: 2021/10/22 18:36:05 by jaberkro ######## odam.nl */
/* */
/* ************************************************************************** */
int ft_isalpha(int c)
{
if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'))
return (1);
return (0);
}