-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isalpha.c
16 lines (15 loc) · 978 Bytes
/
ft_isalpha.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_isalpha.c :+: :+: */
/* +:+ */
/* By: jvan-hal <[email protected]> +#+ */
/* +#+ */
/* Created: 2022/10/03 14:30:24 by jvan-hal #+# #+# */
/* Updated: 2022/10/21 14:36:34 by jvan-hal ######## odam.nl */
/* */
/* ************************************************************************** */
int ft_isalpha(int c)
{
return ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));
}