diff options
| author | yctct <yctct@yctct.com> | 2026-02-05 12:18:33 +0100 |
|---|---|---|
| committer | yctct <yctct@yctct.com> | 2026-02-05 12:18:33 +0100 |
| commit | 472b8f20c0f74d20dbb434abce10ee86054b9975 (patch) | |
| tree | 95625c0ba5a7f999c9add7f9bd55bb0f0b4dc173 /ft_isdigit.c | |
| parent | 8403fab94b17bc63bc193037c8777b9074707287 (diff) | |
Diffstat (limited to 'ft_isdigit.c')
| -rw-r--r-- | ft_isdigit.c | 22 |
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); -} -*/ |
