-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_isalpha.c
More file actions
19 lines (18 loc) · 1000 Bytes
/
ft_isalpha.c
File metadata and controls
19 lines (18 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_isalpha.c :+: :+: */
/* +:+ */
/* By: ivork <ivork@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/08 21:02:07 by ivork #+# #+# */
/* Updated: 2020/11/23 13:20:58 by anonymous ######## odam.nl */
/* */
/* ************************************************************************** */
int ft_isalpha(int c)
{
if ((c < 65 || c > 90) && (c < 97 || c > 122))
return (0);
else
return (1);
}