X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=misc.c;h=f3b0f3dcf33675cf166e45d50689d42064bade2a;hp=756e5cbfb223a443d3909fe4d3025b199bc3cb55;hb=faedb38a6499b3cc638079c1e17621c9f9b192f0;hpb=03b2f1c86e4a7e856fadff2244b9c6456ccd8835 diff --git a/misc.c b/misc.c index 756e5cb..f3b0f3d 100644 --- a/misc.c +++ b/misc.c @@ -128,11 +128,6 @@ void tokenize(char* raw, struct command_t *cmd) /* Hide the fact that wods are corrently packed longs */ -bool wordempty(token_t a) -{ - return a == 0; -} - void wordclear(token_t *v) { *v = 0; @@ -140,7 +135,7 @@ void wordclear(token_t *v) /* I/O routines (speak, pspeak, rspeak, sspeak, get_input, yes) */ -void vspeak(const char* msg, bool blank, va_list ap) +static void vspeak(const char* msg, bool blank, va_list ap) { // Do nothing if we got a null pointer. if (msg == NULL)