summaryrefslogtreecommitdiff
path: root/ft_isdigit.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_isdigit.c')
-rw-r--r--ft_isdigit.c22
1 files changed, 0 insertions, 22 deletions
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);
-}
-*/