TP_13 exo2: Finish the implementation of a basic tic-tac-toe game.
[TD_C.git] / TP_13 / exo2 / lib / coordinates.h
index 3a17ade5a608a152f621d6a7fefa15b3915f9e61..b396c3d890c92896336d04c5b8cd41613090dfbc 100644 (file)
@@ -33,6 +33,6 @@ typedef struct coordinates_s {
 void init_coordinates(coordinates_t* coordinates_array);
 coordinates_t set_coordinates(int y, int x, unsigned type);
 unsigned add_coordinates(coordinates_t new_coordinates, coordinates_t* coordinates_array, unsigned round);
-bool chk_win_conditions(coordinates_t* coordinates_array);
+bool chk_win_conditions(coordinates_t* coordinates_array, unsigned round);
 
 #endif /* COORDINATES_H */