From 83d25dbefde0fabfbfcbe2efbf54f7519be37ddb Mon Sep 17 00:00:00 2001 From: Camille Chauvet Date: Fri, 28 Oct 2022 18:29:59 +0200 Subject: [PATCH] kekw --- Makefile | 85 ++++++++++++++-------------------------------------- ft_calloc.c | 2 +- ft_isalnum.c | 8 ++--- ft_split.c | 3 +- 4 files changed, 30 insertions(+), 68 deletions(-) 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