X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/ac5deb9c728c31e6adeedc57fa2ed1b2565b1818..HEAD:/grid.h diff --git a/grid.h b/grid.h index 7cf4f59..d1c260e 100644 --- a/grid.h +++ b/grid.h @@ -114,10 +114,10 @@ typedef enum grid_type { GRIDGEN_LIST(ENUM) GRID_TYPE_MAX } grid_type; /* Free directly after use if non-NULL. Will never contain an underscore * (so clients can safely use that as a separator). */ -char *grid_new_desc(grid_type type, int width, int height, int dual, random_state *rs); -char *grid_validate_desc(grid_type type, int width, int height, int dual, char *desc); +char *grid_new_desc(grid_type type, int width, int height, random_state *rs); +char *grid_validate_desc(grid_type type, int width, int height, char *desc); -grid *grid_new(grid_type type, int width, int height, int dual, char *desc); +grid *grid_new(grid_type type, int width, int height, char *desc); void grid_free(grid *g);