From 7230528198376eaf9e9ce4aaf2d7acf9d74ed467 Mon Sep 17 00:00:00 2001 From: lalgarra Date: Fri, 3 Oct 2025 21:24:46 +0200 Subject: [PATCH] Correctionin test --- ft_isalpha_test.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ft_isalpha_test.c b/ft_isalpha_test.c index 10c55c9..91a2db0 100644 --- a/ft_isalpha_test.c +++ b/ft_isalpha_test.c @@ -7,8 +7,7 @@ int main(void) for (c = 0; c < 256; c++) { - /*printf("'%c' (%i); isalpha(c): %i\r\n", c, c, ft_isalpha(c));*/ - printf("'%c' (%i); isalpha(c): %i\r\n", c, c, ft_isdigit(c)); + printf("'%c' (%i); isalpha(c): %i\r\n", c, c, ft_isalpha(c)); } return (0); }