X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=cheat.c;h=d25e218fdf9a70b153b16cf836e8758037683105;hb=bb2b8e0fcad10cf896acd1bfd42267c40f4f21ea;hp=b75fccf9c47951f217e7d4696357b97817ff8d21;hpb=ef236aea3beef846b38245aa4ce3a753862c84f0;p=open-adventure.git diff --git a/cheat.c b/cheat.c index b75fccf..d25e218 100644 --- a/cheat.c +++ b/cheat.c @@ -3,11 +3,16 @@ * not happen. It leverages chunks of advent, mostly initialize() and * savefile(), so we know we're always outputing save files that advent * can import. + * + * Copyright (c) 1977, 2005 by Will Crowther and Don Woods + * Copyright (c) 2017 by Eric S. Raymond + * SPDX-License-Identifier: BSD-2-clause */ #include #include #include #include +#include #include "advent.h" int main(int argc, char *argv[]) @@ -39,19 +44,19 @@ int main(int argc, char *argv[]) switch (ch) { case 'd': game.numdie = (turn_t)atoi(optarg); - printf("cheat: game.numdie = %ld\n", game.numdie); + printf("cheat: game.numdie = %d\n", game.numdie); break; case 'l': game.limit = (turn_t)atoi(optarg); - printf("cheat: game.limit = %ld\n", game.limit); + printf("cheat: game.limit = %d\n", game.limit); break; case 's': - game.saved = (long)atoi(optarg); - printf("cheat: game.saved = %ld\n", game.saved); + game.saved = (int)atoi(optarg); + printf("cheat: game.saved = %d\n", game.saved); break; case 't': game.turns = (turn_t)atoi(optarg); - printf("cheat: game.turns = %ld\n", game.turns); + printf("cheat: game.turns = %d\n", game.turns); break; case 'v': version = atoi(optarg); @@ -92,3 +97,14 @@ int main(int argc, char *argv[]) return EXIT_SUCCESS; } + +/* + * Ugh...unused, but required for linkage. + * See thje actually useful version of this in main.c + */ + +char *myreadline(const char *prompt) +{ + return readline(prompt); +} +