aboutsummaryrefslogtreecommitdiff
path: root/src/ctype/ft_isblank.c
blob: def106b9f08b4aeb8739d3048bd9a72d64e337f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   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');
}