-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isascii.c
executable file
·22 lines (19 loc) · 1023 Bytes
/
ft_isascii.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isascii.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ngouy <ngouy@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/05 11:27:02 by ngouy #+# #+# */
/* Updated: 2015/11/04 16:05:12 by ngouy ### ########.fr */
/* */
/* ************************************************************************** */
/*
** return 1 if c is an ascii char, 0 either
*/
#include "libft.h"
int ft_isascii(int c)
{
return (c >= 0 && c <= 127);
}