| 111 | } |
| 112 | |
| 113 | void |
| 114 | pline_dir(int dir, const char *line, ...) |
| 115 | { |
| 116 | va_list the_args; |
| 117 | |
| 118 | set_msg_dir(dir); |
| 119 | |
| 120 | va_start(the_args, line); |
| 121 | vpline(line, the_args); |
| 122 | va_end(the_args); |
| 123 | } |
| 124 | |
| 125 | void |
| 126 | pline_xy(coordxy x, coordxy y, const char *line, ...) |