add day 14 and try part2 with mlx (didn't work)

This commit is contained in:
2024-12-14 15:17:44 +01:00
parent 4342ae314e
commit 7dfe1cb9f3
131 changed files with 3142 additions and 0 deletions

View File

@ -0,0 +1,18 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tomoron <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/13 18:10:01 by tomoron #+# #+# */
/* Updated: 2023/10/30 12:13:53 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isdigit(int c)
{
if (!(c >= '0' && c <= '9'))
return (0);
return (1);
}