X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=misc.c;h=23c053f2e41a7b91f41e1ebda1b154361e6629c9;hb=a15e7c9f91dc3597896536658d7ffa5eda9e940f;hp=e6d31bf232b18b64d69272bbb5c2b5d68a7a5f4f;hpb=30f13c6c25be8d0fb5b0e6d819685b4e6f45829c;p=open-adventure.git diff --git a/misc.c b/misc.c index e6d31bf..23c053f 100644 --- a/misc.c +++ b/misc.c @@ -93,6 +93,7 @@ static void vspeak(const char* msg, bool blank, va_list ap) } } + // LCOV_EXCL_START - doesn't occur in test suite. /* Version specifier */ if (msg[i] == 'V') { strcpy(renderp, VERSION); @@ -100,6 +101,7 @@ static void vspeak(const char* msg, bool blank, va_list ap) renderp += len; size -= len; } + // LCOV_EXCL_STOP } } *renderp = 0; @@ -411,7 +413,7 @@ static bool is_valid_int(const char *str) return true; } -static void get_vocab_metadata(const char* word, vocab_t* id, enum wordtype* type) +static void get_vocab_metadata(const char* word, vocab_t* id, word_type_t* type) { /* Check for an empty string */ if (strncmp(word, "", sizeof("")) == 0) { @@ -654,7 +656,7 @@ void set_seed(long seedval) game.zzword[5] = '\0'; } -unsigned long get_next_lcg_value(void) +static unsigned long get_next_lcg_value(void) /* Return the LCG's current value, and then iterate it. */ { unsigned long old_x = game.lcg_x;