/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isblank.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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'); }