| 3459 | } |
| 3460 | |
| 3461 | staticfn int |
| 3462 | status_hilite_linestr_countfield(int fld) |
| 3463 | { |
| 3464 | struct _status_hilite_line_str *tmp; |
| 3465 | boolean countall = (fld == BL_FLUSH); |
| 3466 | int count = 0; |
| 3467 | |
| 3468 | for (tmp = status_hilite_str; tmp; tmp = tmp->next) { |
| 3469 | if (countall || tmp->fld == fld) |
| 3470 | count++; |
| 3471 | } |
| 3472 | return count; |
| 3473 | } |
| 3474 | |
| 3475 | /* used by options handling, doset(options.c) */ |
| 3476 | int |
no outgoing calls
no test coverage detected