| 64 | } |
| 65 | |
| 66 | int wmove(WINDOW *win, int y, int x) |
| 67 | { |
| 68 | PDC_LOG(("wmove() - called: y=%d x=%d\n", y, x)); |
| 69 | |
| 70 | if (!win || x < 0 || y < 0 || x >= win->_maxx || y >= win->_maxy) |
| 71 | return ERR; |
| 72 | |
| 73 | win->_curx = x; |
| 74 | win->_cury = y; |
| 75 | |
| 76 | return OK; |
| 77 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…