diff options
Diffstat (limited to 'src/ctype/ft_isascii.c')
| -rw-r--r-- | src/ctype/ft_isascii.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ctype/ft_isascii.c b/src/ctype/ft_isascii.c index 376ee54..12b6849 100644 --- a/src/ctype/ft_isascii.c +++ b/src/ctype/ft_isascii.c @@ -6,11 +6,11 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 09:54:30 by cacharle #+# #+# */ -/* Updated: 2020/02/10 02:14:40 by cacharle ### ########.fr */ +/* Updated: 2020/02/12 23:01:02 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isascii(int c) { - return (c >= 0 && c <= 255); + return (c >= 00 && c <= 0177); } |
