| 95 | } |
| 96 | |
| 97 | int |
| 98 | HdrCsvIter::count_values(MIMEField *field, bool follow_dups) |
| 99 | { |
| 100 | int count = 0; |
| 101 | auto val = get_first(field, follow_dups); // get index 0 |
| 102 | while (val) { |
| 103 | val = get_next(); |
| 104 | ++count; |
| 105 | } |
| 106 | return count; |
| 107 | } |
no outgoing calls
no test coverage detected