]> git.ipfire.org Git - thirdparty/git.git/blame - reachable.h
Documentation/RelNotes/2.45.0.txt: fix typo
[thirdparty/git.git] / reachable.h
CommitLineData
94421474
JH
1#ifndef REACHEABLE_H
2#define REACHEABLE_H
3
dc347195 4struct progress;
ef3ca954 5struct rev_info;
a7d49383
TB
6struct object;
7struct packed_git;
ef3ca954 8
2fb90409
TB
9typedef void report_recent_object_fn(const struct object *, struct packed_git *,
10 off_t, time_t);
11
55454427 12int add_unseen_recent_objects_to_traversal(struct rev_info *revs,
2fb90409
TB
13 timestamp_t timestamp,
14 report_recent_object_fn cb,
15 int ignore_in_core_kept_packs);
55454427 16void mark_reachable_objects(struct rev_info *revs, int mark_reflog,
ad6dad09 17 timestamp_t mark_recent, struct progress *);
94421474
JH
18
19#endif