| 227 | } |
| 228 | |
| 229 | void PDC_sync(WINDOW *win) |
| 230 | { |
| 231 | PDC_LOG(("PDC_sync() - called:\n")); |
| 232 | |
| 233 | if (win->_immed) |
| 234 | wrefresh(win); |
| 235 | if (win->_sync) |
| 236 | wsyncup(win); |
| 237 | } |
| 238 | |
| 239 | WINDOW *newwin(int nlines, int ncols, int begy, int begx) |
| 240 | { |
no test coverage detected
searching dependent graphs…