| 385 | } |
| 386 | |
| 387 | void |
| 388 | You_feel(const char *line, ...) |
| 389 | { |
| 390 | va_list the_args; |
| 391 | char *tmp; |
| 392 | |
| 393 | va_start(the_args, line); |
| 394 | if (Unaware) |
| 395 | YouPrefix(tmp, "You dream that you feel ", line); |
| 396 | else |
| 397 | YouPrefix(tmp, "You feel ", line); |
| 398 | vpline(strcat(tmp, line), the_args); |
| 399 | va_end(the_args); |
| 400 | } |
| 401 | |
| 402 | void |
| 403 | You_cant(const char *line, ...) |
no test coverage detected