diff options
author | Raúl Benencia <rul@kalgan.cc> | 2015-03-29 15:10:46 -0300 |
---|---|---|
committer | Raúl Benencia <rul@kalgan.cc> | 2015-03-29 15:10:46 -0300 |
commit | c695131d78839bf96cf9731df8a2a0b07cc0e19f (patch) | |
tree | 5164b0d4803e94b7ce13e4b624c4690ff2fad7ff /include | |
parent | c9f4b4e74b34e9532f72019db4b597ee24d30b6f (diff) |
remove uneeded vars
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. |