FEAT: atoi and strncmp tests

This commit is contained in:
2026-01-25 15:58:29 +01:00
parent 5c9ddd84b7
commit 442619f4cb
11 changed files with 36 additions and 29 deletions

View File

@@ -18,8 +18,9 @@ int strncmp_launcher(void)
size_t res;
testlist = NULL;
load_test(&testlist, "OK test", &strncmp_ok_test);
load_test(&testlist, "KO test", &strncmp_ko_test);
load_test(&testlist, "Basic test", &strncmp_basic_test);
load_test(&testlist, "Len test", &strncmp_len_test);
load_test(&testlist, "High len test", &strncmp_high_len_test);
res = launch_tests(testlist, "ft_strncmp");
clear_tests(&testlist);
return (res);