forked from hidaehyunlee/Libft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isascii.c
16 lines (15 loc) · 949 Bytes
/
ft_isascii.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isascii.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: daelee <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/03/01 16:26:06 by daelee #+# #+# */
/* Updated: 2020/04/08 19:58:25 by daelee ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isascii(int c)
{
return (c >= 0 && c <= 127);
}