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