| 1056 | -------------------------------------------------------------------------*/ |
| 1057 | |
| 1058 | unsigned |
| 1059 | LogFilterList::count() const |
| 1060 | { |
| 1061 | unsigned cnt = 0; |
| 1062 | |
| 1063 | for (LogFilter *f = first(); f; f = next(f)) { |
| 1064 | cnt++; |
| 1065 | } |
| 1066 | return cnt; |
| 1067 | } |
| 1068 | |
| 1069 | void |
| 1070 | LogFilterList::display(FILE *fd) |