| 498 | } |
| 499 | |
| 500 | void show_scroll_win(WINDOW *main_window, |
| 501 | const char *title, |
| 502 | const char *text) |
| 503 | { |
| 504 | (void)show_scroll_win_ext(main_window, title, (char *)text, NULL, NULL, NULL, NULL); |
| 505 | } |
| 506 | |
| 507 | /* layman's scrollable window... */ |
| 508 | int show_scroll_win_ext(WINDOW *main_window, const char *title, char *text, |
no test coverage detected