| 231 | } |
| 232 | |
| 233 | static int cmd_for_each_reflog_ent(struct ref_store *refs, const char **argv) |
| 234 | { |
| 235 | const char *refname = notnull(*argv++, "refname"); |
| 236 | |
| 237 | return refs_for_each_reflog_ent(refs, refname, each_reflog_ent, refs); |
| 238 | } |
| 239 | |
| 240 | static int cmd_for_each_reflog_ent_reverse(struct ref_store *refs, const char **argv) |
| 241 | { |
nothing calls this directly
no test coverage detected