| 452 | } |
| 453 | |
| 454 | void |
| 455 | You_see(const char *line, ...) |
| 456 | { |
| 457 | va_list the_args; |
| 458 | char *tmp; |
| 459 | |
| 460 | va_start(the_args, line); |
| 461 | if (Unaware) |
| 462 | YouPrefix(tmp, "You dream that you see ", line); |
| 463 | else if (Blind) /* caller should have caught this... */ |
| 464 | YouPrefix(tmp, "You sense ", line); |
| 465 | else |
| 466 | YouPrefix(tmp, "You see ", line); |
| 467 | vpline(strcat(tmp, line), the_args); |
| 468 | va_end(the_args); |
| 469 | } |
| 470 | |
| 471 | /* Print a message inside double-quotes. |
| 472 | * The caller is responsible for checking deafness. |
no test coverage detected