#ifndef OTHELLO_TEST_H #define OTHELLO_TEST_H 1 #include struct test_data { int test; int profondeur; }; typedef struct test_data Test_Data; /* Initialise un Test_Data */ Test_Data *nouveau_test_data(int test, int profondeur); /* Libère un Test_Data de la mémoire */ void free_test_data(Test_Data *test_data); /* Run the tests */ void run_tests(void); #endif