| 219 | } |
| 220 | |
| 221 | static int show_reference(const struct reference *ref, void *cb_data UNUSED) |
| 222 | { |
| 223 | if (ref_excluded(&ref_excludes, ref->name)) |
| 224 | return 0; |
| 225 | show_rev(NORMAL, ref->oid, ref->name); |
| 226 | return 0; |
| 227 | } |
| 228 | |
| 229 | static int anti_reference(const struct reference *ref, void *cb_data UNUSED) |
| 230 | { |
nothing calls this directly
no test coverage detected