| 174 | #endif |
| 175 | |
| 176 | static void redraw_module(struct coreinfo_cat *cat) |
| 177 | { |
| 178 | if (cat->count == 0) |
| 179 | return; |
| 180 | |
| 181 | wclear(modwin); |
| 182 | cat->modules[cat->cur]->redraw(modwin); |
| 183 | wrefresh(modwin); |
| 184 | } |
| 185 | |
| 186 | static void handle_category_key(struct coreinfo_cat *cat, int key) |
| 187 | { |
no test coverage detected