From 472b8f20c0f74d20dbb434abce10ee86054b9975 Mon Sep 17 00:00:00 2001 From: yctct Date: Thu, 5 Feb 2026 12:18:33 +0100 Subject: Remove tests --- ft_isdigit.c | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'ft_isdigit.c') diff --git a/ft_isdigit.c b/ft_isdigit.c index a41b0e5..01a2865 100644 --- a/ft_isdigit.c +++ b/ft_isdigit.c @@ -23,25 +23,3 @@ int ft_isdigit(int c) return (1); return (0); } -/* -int main(void) -{ - printf("ft_isdigit: %d, %d\n", ft_isdigit(0), 0); - printf(" isdigit: %d, %d\n", isdigit(0), 0); - printf("\n"); - printf("ft_isdigit: %d, %d\n", ft_isdigit(47), 47); - printf(" isdigit: %d, %d\n", isdigit(47), 47); - printf("\n"); - printf("ft_isdigit: %d, %d\n", ft_isdigit(48), 48); - printf(" isdigit: %d, %d\n", isdigit(48), 48); - printf("\n"); - printf("ft_isdigit: %d, %d\n", ft_isdigit(57), 57); - printf(" isdigit: %d, %d\n", isdigit(57), 57); - printf("\n"); - printf("ft_isdigit: %d, %d\n", ft_isdigit(58), 58); - printf(" isdigit: %d, %d\n", isdigit(58), 58); - printf("\n"); - printf("ft_isdigit: %d, %d\n", ft_isdigit(127), 127); - printf(" isdigit: %d, %d\n", isdigit(127), 127); -} -*/ -- cgit v1.2.3