diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-02-12 23:14:11 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-02-12 23:36:42 +0100 |
| commit | e6f53e82b0f8ae1cff3749ea3476c2074c325d7b (patch) | |
| tree | 8fb26b636a6959f036d74c7ad9c28e2e2290495d /src/ctype/ft_isascii.c | |
| parent | f178a21e2560d9375227dbf6751a54f12e1033b2 (diff) | |
| download | libft-e6f53e82b0f8ae1cff3749ea3476c2074c325d7b.tar.gz libft-e6f53e82b0f8ae1cff3749ea3476c2074c325d7b.tar.bz2 libft-e6f53e82b0f8ae1cff3749ea3476c2074c325d7b.zip | |
Added ctype tests, ignore htnew tests
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); } |
