18 lines
966 B
C
18 lines
966 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_issign.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/11/16 19:05:57 by aortigos #+# #+# */
|
|
/* Updated: 2025/11/16 19:06:27 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
int ft_issign(int c)
|
|
{
|
|
return (c == 43 || c == 45);
|
|
} |