diff --git a/Makefile b/Makefile index a305460..5a3a0d0 100644 --- a/Makefile +++ b/Makefile @@ -6,80 +6,41 @@ # By: cchauvet = c && c >= '0') - || ('z' >= c && c >= 'a') - || ('Z' >= c && c >= 'A'))) + if (('9' >= c && c >= '0') + || ('z' >= c && c >= 'a') + || ('Z' >= c && c >= 'A')) return (1); return (0); } diff --git a/ft_split.c b/ft_split.c index 455b0d1..1ab69f5 100644 --- a/ft_split.c +++ b/ft_split.c @@ -6,7 +6,7 @@ /* By: cchauvet