X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/d3a026ed4258c207b6309802cc2c92eb0a812aac..5928817c732d591bd446b6b048702a98f5ec1804:/net.c diff --git a/net.c b/net.c index 3c28ccc..cf3fe3d 100644 --- a/net.c +++ b/net.c @@ -272,6 +272,15 @@ char *new_game_seed(game_params *params) return dupstr(buf); } +char *validate_seed(game_params *params, char *seed) +{ + /* + * Since any string at all will suffice to seed the RNG, there + * is no validation required. + */ + return NULL; +} + /* ---------------------------------------------------------------------- * Construct an initial game state, given a seed and parameters. */