Next output to window will start at (x,y), also moves displayable cursor to (x,y). For backward compatibility, 1 <= x < cols, 0 <= y < rows, where cols and rows are the size of window. */
| 542 | the size of window. |
| 543 | */ |
| 544 | void |
| 545 | curses_curs(winid wid, int x, int y) |
| 546 | { |
| 547 | curses_move_cursor(wid, x, y); |
| 548 | } |
| 549 | |
| 550 | /* |
| 551 | putstr(window, attr, str) |
nothing calls this directly
no test coverage detected