aboutsummaryrefslogtreecommitdiff
path: root/test/src/ctype/test_ft_isdigit.c
blob: 74c210b60ad4023de4bde47b969cc5d254c8f46d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "libft_test.h"

TEST_GROUP(ft_isdigit);

TEST_SETUP(ft_isdigit)
{}

TEST_TEAR_DOWN(ft_isdigit)
{}

TEST(ft_isdigit, base)
{
	for (int i = 0; i <= UCHAR_MAX; i++)
		TEST_ASSERT_EQUAL(!!isdigit(i), !!ft_isdigit(i));
}