X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=misc.c;h=35c4e4b46b1f41dbf60f2aac877d6c6bd88b8dbf;hb=9af3ab4ecddbd6dd0347a4adc54a98b5153a9fb6;hp=968e2a1840d5a6acc6c04a79c44bfcaf418a95ee;hpb=732b5810314b7d41d424a56644e66d849a9c5e73;p=open-adventure.git diff --git a/misc.c b/misc.c index 968e2a1..35c4e4b 100644 --- a/misc.c +++ b/misc.c @@ -35,6 +35,7 @@ static void* xcalloc(size_t size) /* I/O routines (speak, pspeak, rspeak, sspeak, get_input, yes) */ static void vspeak(const char* msg, bool blank, va_list ap) +/* Engine for various speak functions */ { // Do nothing if we got a null pointer. if (msg == NULL) @@ -122,6 +123,7 @@ static void vspeak(const char* msg, bool blank, va_list ap) } void speak(const char* msg, ...) +/* speak a specified string */ { va_list ap; va_start(ap, msg); @@ -130,6 +132,7 @@ void speak(const char* msg, ...) } void sspeak(const int msg, ...) +/* Speak a message from the arbitrary-messages list */ { va_list ap; va_start(ap, msg);