-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_isalpha.c
More file actions
18 lines (16 loc) · 980 Bytes
/
ft_isalpha.c
File metadata and controls
18 lines (16 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: halhashm <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/10/05 09:30:43 by halhashm #+# #+# */
/* Updated: 2021/10/24 11:41:23 by halhashm ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_isalpha(int n)
{
return (ft_isupper(n) || ft_islower(n));
}