summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_tolower.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/src/ft_tolower.c')
-rw-r--r--libft/src/ft_tolower.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libft/src/ft_tolower.c b/libft/src/ft_tolower.c
index 1877dbb..91ed9ee 100644
--- a/libft/src/ft_tolower.c
+++ b/libft/src/ft_tolower.c
@@ -10,16 +10,14 @@
/* */
/* ************************************************************************** */
-static int
- ft_isupper(int c)
+static int ft_isupper(int c)
{
if (c >= 65 && c <= 90)
return (1);
return (0);
}
-int
- ft_tolower(int c)
+int ft_tolower(int c)
{
if (ft_isupper(c))
return (c + 32);