| 31 | #define SS3 M(C('O')) /* 8-bit escape sequence initiator for VT number pad */ |
| 32 | |
| 33 | int |
| 34 | curses_getch(void) |
| 35 | { |
| 36 | int ch; |
| 37 | |
| 38 | if (iflags.debug_fuzzer) |
| 39 | ch = randomkey(); |
| 40 | else |
| 41 | ch = getch(); |
| 42 | return ch; |
| 43 | } |
| 44 | |
| 45 | /* Read a character of input from the user */ |
| 46 |
no test coverage detected