aboutsummaryrefslogtreecommitdiff
path: root/src/ctype/ft_isblank.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ctype/ft_isblank.c')
-rw-r--r--src/ctype/ft_isblank.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/ctype/ft_isblank.c b/src/ctype/ft_isblank.c
deleted file mode 100644
index def106b..0000000
--- a/src/ctype/ft_isblank.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* ft_isblank.c :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2020/02/10 05:17:45 by cacharle #+# #+# */
-/* Updated: 2020/02/10 05:18:34 by cacharle ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-int ft_isblank(int c)
-{
- return (c == ' ' || c == '\t');
-}