Cub3D/libft/tests/ft_string/ft_char/tests_isdigit.c
2024-11-08 19:37:30 +01:00

27 lines
1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* test_isdigit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bgoulard <bgoulard@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/23 15:57:05 by bgoulard #+# #+# */
/* Updated: 2024/05/23 15:57:55 by bgoulard ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_char.h"
int test_ft_isdigit(void)
{
int i;
i = 0;
while (i < 256)
{
if (ft_isdigit(i) != (i >= '0' && i <= '9'))
return (1);
i++;
}
return (0);
}