| 260 | } |
| 261 | |
| 262 | void |
| 263 | txt_startup(int *wid, int *hgt) |
| 264 | { |
| 265 | txt_get_scr_size(); |
| 266 | *wid = CO; |
| 267 | *hgt = LI; |
| 268 | |
| 269 | attrib_gr_normal = attrib_text_normal; |
| 270 | attrib_gr_intense = attrib_text_intense; |
| 271 | g_attribute = attrib_text_normal; /* Give it a starting value */ |
| 272 | get_cursinfo(&cursor_start_scanline, |
| 273 | &cursor_end_scanline, |
| 274 | &cursor_info); |
| 275 | } |
| 276 | |
| 277 | /* |
| 278 | * Screen output routines (these are heavily used). |
no test coverage detected