summaryrefslogtreecommitdiff
path: root/tree.h
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2020-12-13 08:04:25 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-12-13 22:18:20 (GMT)
commit70912f66de751b2f1af145887dc64c9c0d06de36 (patch)
tree43473ea1d368b1cc0122ddd0996611102bb3affc /tree.h
parent6681ce5cf6a869aa73cfe56d041dce133262587a (diff)
downloadgit-70912f66de751b2f1af145887dc64c9c0d06de36.zip
git-70912f66de751b2f1af145887dc64c9c0d06de36.tar.gz
git-70912f66de751b2f1af145887dc64c9c0d06de36.tar.bz2
tree: enable cmp_cache_name_compare() to be used elsewhere
Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'tree.h')
-rw-r--r--tree.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tree.h b/tree.h
index 9383745..3eb0484 100644
--- a/tree.h
+++ b/tree.h
@@ -28,6 +28,8 @@ void free_tree_buffer(struct tree *tree);
/* Parses and returns the tree in the given ent, chasing tags and commits. */
struct tree *parse_tree_indirect(const struct object_id *oid);
+int cmp_cache_name_compare(const void *a_, const void *b_);
+
#define READ_TREE_RECURSIVE 1
typedef int (*read_tree_fn_t)(const struct object_id *, struct strbuf *, const char *, unsigned int, int, void *);