| 248 | } |
| 249 | |
| 250 | void |
| 251 | X11_status_init(void) |
| 252 | { |
| 253 | int i; |
| 254 | |
| 255 | /* no color and no attributes */ |
| 256 | for (i = 0; i < MAXBLSTATS; ++i) |
| 257 | X11_status_colors[i] = old_field_colors[i] = NO_COLOR; |
| 258 | for (i = 0; i < SIZE(old_cond_colors); ++i) |
| 259 | old_cond_colors[i] = NO_COLOR; |
| 260 | hpbar_percent = 0, hpbar_color = NO_COLOR; |
| 261 | X11_condition_bits = old_condition_bits = 0L; |
| 262 | /* let genl_status_init do most of the initialization */ |
| 263 | genl_status_init(); |
| 264 | } |
| 265 | |
| 266 | void |
| 267 | X11_status_finish(void) |
nothing calls this directly
no test coverage detected