ERR is actually -1, but this prevents us from needing to use curses.h in * sipp.cpp. */
| 38 | /* ERR is actually -1, but this prevents us from needing to use curses.h in |
| 39 | * sipp.cpp. */ |
| 40 | int screen_readkey() |
| 41 | { |
| 42 | int c = getch(); |
| 43 | if (c == ERR) { |
| 44 | return -1; |
| 45 | } |
| 46 | return c; |
| 47 | } |
| 48 | |
| 49 | void screen_exit() |
| 50 | { |
no outgoing calls
no test coverage detected