-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_isascii.c
More file actions
16 lines (15 loc) · 948 Bytes
/
ft_isascii.c
File metadata and controls
16 lines (15 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isascii.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kjungoo <kjungoo@student.42seoul.kr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/11 16:09:29 by kjungoo #+# #+# */
/* Updated: 2022/07/13 16:02:26 by kjungoo ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isascii(int c)
{
return (0 <= c && c <= 127);
}