19 lines
970 B
C
19 lines
970 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_issign.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* 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 == '-');
|
|
}
|