aboutsummaryrefslogtreecommitdiff
path: root/include/libft_ctype.h
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-09-18 16:39:52 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-09-18 16:39:52 +0200
commitdd0c485ac4975b7dd6d2e230213be1da50d0a065 (patch)
tree5fbd967f8b95c72fbb696bb089c2cc349d28b61f /include/libft_ctype.h
parent3c3f1115f6e9a9b914e2dcbd796501ca7ce85342 (diff)
downloadlibft-malloc.tar.gz
libft-malloc.tar.bz2
libft-malloc.zip
Removing unnecessary stuffmalloc
Diffstat (limited to 'include/libft_ctype.h')
-rw-r--r--include/libft_ctype.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/include/libft_ctype.h b/include/libft_ctype.h
deleted file mode 100644
index ad42c64..0000000
--- a/include/libft_ctype.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* libft_ctype.h :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2020/01/31 10:35:31 by cacharle #+# #+# */
-/* Updated: 2020/02/10 05:18:30 by cacharle ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-#ifndef LIBFT_CTYPE_H
-# define LIBFT_CTYPE_H
-
-/*
-** assertion
-*/
-
-int ft_isalpha(int c);
-int ft_isdigit(int c);
-int ft_isalnum(int c);
-int ft_isascii(int c);
-int ft_isprint(int c);
-int ft_isspace(int c);
-int ft_isblank(int c);
-
-/*
-** conversion
-*/
-
-int ft_toupper(int c);
-int ft_tolower(int c);
-int ft_todigit(int c);
-
-#endif