int winchnstr (WINDOW *, chtype *, int) {} int winnstr (WINDOW *, char *, int) {} int winsch (WINDOW *, chtype) {} int winsdelln (WINDOW *,int) {} int winsnstr (WINDOW *, const char *,int) {} D */
| 708 | // int winsdelln (WINDOW *,int) {} |
| 709 | // int winsnstr (WINDOW *, const char *,int) {} |
| 710 | /* D */ int wmove(WINDOW *win, int y, int x) |
| 711 | { |
| 712 | if (!LEGALYX(win, y, x)) |
| 713 | return ERR; |
| 714 | win->_curx = (NCURSES_SIZE_T) x; |
| 715 | win->_cury = (NCURSES_SIZE_T) y; |
| 716 | win->_flags &= ~_WRAPPED; |
| 717 | win->_flags |= _HASMOVED; |
| 718 | return OK; |
| 719 | } |
| 720 | |
| 721 | #define SWAP_RED_BLUE(c) \ |
| 722 | (((c) & 0x4400) >> 2) | ((c) & 0xAA00) | (((c) & 0x1100) << 2) |
no outgoing calls
no test coverage detected