6 * MuCurses cursor implementation specific header file
15 * Restore cursor position from encoded backup variable
17 * @v *win window on which to operate
18 * @v *pos pointer to struct in which original cursor position is stored
20 static inline void _restore_curs_pos ( WINDOW
*win
, struct cursor_pos
*pos
) {
21 wmove ( win
, pos
->y
, pos
->x
);
25 * Store cursor position for later restoration
27 * @v *win window on which to operate
28 * @v *pos pointer to struct in which to store cursor position
30 static inline void _store_curs_pos ( WINDOW
*win
, struct cursor_pos
*pos
) {