| 1 | #ifndef REACHEABLE_H |
| 2 | #define REACHEABLE_H |
| 3 | |
| 4 | struct progress; |
| 5 | struct rev_info; |
| 6 | struct object; |
| 7 | struct packed_git; |
| 8 | |
| 9 | typedef void report_recent_object_fn(const struct object *, struct packed_git *, |
| 10 | off_t, time_t); |
| 11 | |
| 12 | int add_unseen_recent_objects_to_traversal(struct rev_info *revs, |
| 13 | timestamp_t timestamp, |
| 14 | report_recent_object_fn cb, |
| 15 | int ignore_in_core_kept_packs); |
| 16 | void mark_reachable_objects(struct rev_info *revs, int mark_reflog, |
| 17 | timestamp_t mark_recent, struct progress *); |
| 18 | |
| 19 | #endif |