fix: test: strcpy

This commit is contained in:
starnakin 2024-09-02 15:29:06 +02:00
parent d1756266b2
commit 1de03da534

View File

@ -46,14 +46,14 @@ void multiple_test_int_2(int (*normal_func)(const char *, const char *), int (*o
}
}
void multiple_test_strcpy(int (*own_func)(char *, const char *), const char * const *values)
void multiple_test_strcpy(char *(*own_func)(char *, const char *), const char * const *values)
{
char tmp[4096];
for (size_t i = 0; values[i] != NULL; i++)
{
printf("test: %s", values[i]);
test_int(strcpy(tmp, values[i]), own_func(tmp, values[i]));
test_size_t((size_t) strcpy(tmp, values[i]), (size_t) own_func(tmp, values[i]));
test_str(values[i], tmp);
printf("\n");
}
@ -72,7 +72,7 @@ int main()
multiple_test_int_2(strcmp, ft_strcmp, strcmp_tests);
printf("\n");
printf("STRCPY\n");
const char *strcpy_tests[] = {"yo", "", "bonjour", "co\0fgf", NULL};
multiple_test_strcpy(ft_strcpy, strcpy_tests);