summaryrefslogtreecommitdiffstats
path: root/match-trees.h
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2023-04-22 22:17:15 +0200
committerJunio C Hamano <gitster@pobox.com>2023-04-24 21:47:32 +0200
commitd4ff2072abed071bc9fd291d179162da46d1427f (patch)
treeb2baa025a1bd1b8bf65346695fc422f27367bbb9 /match-trees.h
parentpkt-line.h: move declarations for pkt-line.c functions from cache.h (diff)
downloadgit-d4ff2072abed071bc9fd291d179162da46d1427f.tar.xz
git-d4ff2072abed071bc9fd291d179162da46d1427f.zip
match-trees.h: move declarations for match-trees.c functions from cache.h
Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'match-trees.h')
-rw-r--r--match-trees.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/match-trees.h b/match-trees.h
new file mode 100644
index 0000000000..e3877acd58
--- /dev/null
+++ b/match-trees.h
@@ -0,0 +1,10 @@
+#ifndef MATCH_TREES_H
+#define MATCH_TREES_H
+
+struct object_id;
+struct repository;
+
+void shift_tree(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, int);
+void shift_tree_by(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, const char *);
+
+#endif /* MATCH_TREES_H */