summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_toupper.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-09-29 19:54:12 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-09-29 19:54:12 +0200
commit5ef27d97f1dc36b4e9dd2420ba25166e370913d1 (patch)
tree05fe79b148c750a30c3f0149e933cb3ebc211738 /libft/src/ft_toupper.c
parentUpdate (diff)
download42-minishell-5ef27d97f1dc36b4e9dd2420ba25166e370913d1.tar.gz
42-minishell-5ef27d97f1dc36b4e9dd2420ba25166e370913d1.tar.bz2
42-minishell-5ef27d97f1dc36b4e9dd2420ba25166e370913d1.tar.xz
42-minishell-5ef27d97f1dc36b4e9dd2420ba25166e370913d1.tar.zst
42-minishell-5ef27d97f1dc36b4e9dd2420ba25166e370913d1.zip
End
Diffstat (limited to 'libft/src/ft_toupper.c')
-rw-r--r--libft/src/ft_toupper.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libft/src/ft_toupper.c b/libft/src/ft_toupper.c
index 864ef70..62365c5 100644
--- a/libft/src/ft_toupper.c
+++ b/libft/src/ft_toupper.c
@@ -10,16 +10,14 @@
/* */
/* ************************************************************************** */
-static int
- ft_islower(int c)
+static int ft_islower(int c)
{
if (c >= 97 && c <= 122)
return (1);
return (0);
}
-int
- ft_toupper(int c)
+int ft_toupper(int c)
{
if (ft_islower(c))
return (c - 32);