Print a message inside double-quotes. * The caller is responsible for checking deafness. * Gods can speak directly to you in spite of deafness. */
| 473 | * Gods can speak directly to you in spite of deafness. |
| 474 | */ |
| 475 | void |
| 476 | verbalize(const char *line, ...) |
| 477 | { |
| 478 | va_list the_args; |
| 479 | char *tmp; |
| 480 | |
| 481 | va_start(the_args, line); |
| 482 | gp.pline_flags |= PLINE_VERBALIZE; |
| 483 | tmp = You_buf((int) strlen(line) + sizeof "\"\""); |
| 484 | Strcpy(tmp, "\""); |
| 485 | Strcat(tmp, line); |
| 486 | Strcat(tmp, "\""); |
| 487 | vpline(tmp, the_args); |
| 488 | gp.pline_flags &= ~PLINE_VERBALIZE; |
| 489 | va_end(the_args); |
| 490 | } |
| 491 | |
| 492 | #ifdef CHRONICLE |
| 493 |
no test coverage detected