aboutsummaryrefslogtreecommitdiffstats
path: root/ft_toupper.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_toupper.c')
-rw-r--r--ft_toupper.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/ft_toupper.c b/ft_toupper.c
deleted file mode 100644
index e52e0fa..0000000
--- a/ft_toupper.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include "libft.h"
-
-int
-ft_toupper (int c)
-{
- if (c >= 'a' && c <= 'z')
- return (c - ('a' - 'A'));
- return (c);
-}