diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/coordinate.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/coordinate.h b/include/coordinate.h index 4c98f3f..3a6a287 100644 --- a/include/coordinate.h +++ b/include/coordinate.h @@ -28,22 +28,22 @@ Coord coord_null(); /* * Set Coord column */ -Coord coord_set_col(Coord c, char col); +Coord coord_set_col(Coord, char); /* * Set Coord row */ -Coord coord_set_row(Coord c, char row); +Coord coord_set_row(Coord, char); /* * Get Coord row */ -char coord_get_row(Coord c); +char coord_get_row(Coord); /* * Get Coord column */ -char coord_get_col(Coord c); +char coord_get_col(Coord); /* * Returns the next coordinate. Useful for traversing the board forwards. |