void wcursyncup (WINDOW *) {} int wdelch (WINDOW *) {} int wechochar (WINDOW *, const chtype) {}
| 649 | // int wdelch (WINDOW *) {} |
| 650 | // int wechochar (WINDOW *, const chtype) {} |
| 651 | int werase(WINDOW *win) |
| 652 | { |
| 653 | int x, y; |
| 654 | for (y = 0; y <= win->_maxy; y++) { |
| 655 | for (x = 0; x <= win->_maxx; x++) { |
| 656 | win->_line[y].text[x].chars[0] = ' '; |
| 657 | win->_line[y].text[x].attr = WINDOW_ATTRS(win); |
| 658 | } |
| 659 | // Should we check instead? |
| 660 | win->_line[y].firstchar = 0; |
| 661 | win->_line[y].lastchar = win->_maxx; |
| 662 | } |
| 663 | return OK; |
| 664 | } |
| 665 | // int wgetnstr (WINDOW *,char *,int) {} |
| 666 | int whline(WINDOW *win, chtype ch, int n) |
| 667 | { |