aboutsummaryrefslogtreecommitdiff
path: root/src/ctype/ft_toupper.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ctype/ft_toupper.c')
-rw-r--r--src/ctype/ft_toupper.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/ctype/ft_toupper.c b/src/ctype/ft_toupper.c
deleted file mode 100644
index 8579b91..0000000
--- a/src/ctype/ft_toupper.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* ft_toupper.c :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2019/10/07 10:14:10 by cacharle #+# #+# */
-/* Updated: 2019/11/20 01:04:51 by cacharle ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-#include "libft.h"
-
-int ft_toupper(int c)
-{
- if (c >= 'a' && c <= 'z')
- return (c ^ 0b00100000);
- return (c);
-}