diff options
author | Linus Torvalds <torvalds@osdl.org> | 2006-01-31 14:10:56 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-01-31 16:07:01 -0800 |
commit | 50f9a858ada10b3b57691a313a1c78b0bcbe5947 (patch) | |
tree | 17d66506c96ba46c8bb11eee97076c91f7a8e30e /diff.h | |
parent | 1a5c3a01aad0d0f5d68ffcc1c33aafca9e253591 (diff) | |
download | git-50f9a858ada10b3b57691a313a1c78b0bcbe5947.tar.gz git-50f9a858ada10b3b57691a313a1c78b0bcbe5947.tar.xz |
Make the "struct tree_desc" operations available to others
We have operations to "extract" and "update" a "struct tree_desc", but we
only used them in tree-diff.c and they were static to that file.
But other tree traversal functions can use them to their advantage
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff.h')
-rw-r--r-- | diff.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -13,6 +13,9 @@ struct tree_desc { unsigned long size; }; +extern void update_tree_entry(struct tree_desc *); +extern const unsigned char *tree_entry_extract(struct tree_desc *, const char **, unsigned int *); + struct diff_options; typedef void (*change_fn_t)(struct diff_options *options, |