comparison: src/input.c
src/input.c
- changeset 202
- 6960625e62e0
- parent 200
- 4913bc0ff3e5
equal
deleted
inserted
replaced
| 77 } |
77 } |
| 78 } |
78 } |
| 79 |
79 |
| 80 return 0; |
80 return 0; |
| 81 } |
81 } |
| |
82 |
| |
83 int input_getmaxy(void) { |
| |
84 /* POSIX-curses-compliant wrapper for getmaxy() */ |
| |
85 int x, y; |
| |
86 getmaxyx(stdscr, y, x); |
| |
87 (void)x; |
| |
88 return y; |
| |
89 } |