This repository has been archived on 2022-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
Othello/includes/test.h
2022-12-04 18:25:35 +01:00

21 lines
384 B
C

#ifndef OTHELLO_TEST_H
#define OTHELLO_TEST_H 1
#include <time.h>
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