/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_issign.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tmaze +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/02/25 16:18:54 by tmaze #+# #+# */ /* Updated: 2019/02/25 16:19:13 by tmaze ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_issign(char c) { return (c == '+' || c == '-'); }