Libft extra functions

This commit is contained in:
2025-11-16 20:26:45 +01:00
parent 625a922cc9
commit cbbade912d
13 changed files with 459 additions and 13 deletions

18
lib/libft/ft_issign.c Normal file
View File

@@ -0,0 +1,18 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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);
}