Home
last modified time | relevance | path

Searched refs:expl_string (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/games/cribbage/
H A Dscore.c107 expl_string[0] = '\0'; /* initialize explanation */ in scorehand()
117 strlcat(expl_string, "His Nobs", sizeof expl_string); in scorehand()
123 if (do_explain && expl_string[0] != '\0') in scorehand()
124 strlcat(expl_string, ", ", sizeof expl_string); in scorehand()
128 strlcat(expl_string, "Five-flush", sizeof expl_string); in scorehand()
132 if (do_explain && expl_string[0] != '\0') in scorehand()
133 strlcat(expl_string, ", Four-flush", sizeof expl_string); in scorehand()
135 strlcpy(expl_string, "Four-flush", sizeof expl_string); in scorehand()
138 if (do_explain && expl_string[0] != '\0') in scorehand()
139 strlcat(expl_string, ", ", sizeof expl_string); in scorehand()
[all …]
H A Dextern.c43 char expl_string[128]; /* explanation */ variable
H A Dcribbage.h64 extern char expl_string[128]; /* string for explanation */
H A Dsupport.c146 msg("Explanation: %s", expl_string); in plyrhand()