summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/src/grid.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/puzzles/src/grid.h')
-rw-r--r--apps/plugins/puzzles/src/grid.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/puzzles/src/grid.h b/apps/plugins/puzzles/src/grid.h
index fb8ac48790..19079a44b8 100644
--- a/apps/plugins/puzzles/src/grid.h
+++ b/apps/plugins/puzzles/src/grid.h
@@ -116,8 +116,8 @@ typedef enum grid_type { GRIDGEN_LIST(ENUM) GRID_TYPE_MAX } grid_type;
116/* Free directly after use if non-NULL. Will never contain an underscore 116/* Free directly after use if non-NULL. Will never contain an underscore
117 * (so clients can safely use that as a separator). */ 117 * (so clients can safely use that as a separator). */
118char *grid_new_desc(grid_type type, int width, int height, random_state *rs); 118char *grid_new_desc(grid_type type, int width, int height, random_state *rs);
119char *grid_validate_desc(grid_type type, int width, int height, 119const char *grid_validate_desc(grid_type type, int width, int height,
120 const char *desc); 120 const char *desc);
121 121
122grid *grid_new(grid_type type, int width, int height, const char *desc); 122grid *grid_new(grid_type type, int width, int height, const char *desc);
123 123