| 363 | strcat((YouPrefix(pointer, prefix, text), pointer), text) |
| 364 | |
| 365 | void |
| 366 | You(const char *line, ...) |
| 367 | { |
| 368 | va_list the_args; |
| 369 | char *tmp; |
| 370 | |
| 371 | va_start(the_args, line); |
| 372 | vpline(YouMessage(tmp, "You ", line), the_args); |
| 373 | va_end(the_args); |
| 374 | } |
| 375 | |
| 376 | void |
| 377 | Your(const char *line, ...) |