| 200 | struct xwindow *xw_status_win; |
| 201 | |
| 202 | static int |
| 203 | condcolor(long bm, unsigned long *bmarray) |
| 204 | { |
| 205 | int i; |
| 206 | |
| 207 | if (bm && bmarray) |
| 208 | for (i = 0; i < CLR_MAX; ++i) { |
| 209 | if (bmarray[i] && (bm & bmarray[i])) |
| 210 | return i; |
| 211 | } |
| 212 | return NO_COLOR; |
| 213 | } |
| 214 | |
| 215 | static int |
| 216 | condattr(long bm, unsigned long *bmarray) |
no outgoing calls
no test coverage detected