aboutsummaryrefslogtreecommitdiff
path: root/include/libft_ctype.h
diff options
context:
space:
mode:
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