diff options
| author | Elijah Newren <newren@gmail.com> | 2023-04-22 20:17:22 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-04-24 12:47:32 -0700 |
| commit | 53dca334d6c56488994c0c80a247707419cddbfc (patch) | |
| tree | a3cd64586be1895f70bbb3ec7d11d5c20fe8a623 /cache.h | |
| parent | aabc5617cdfb29ccf98048b0d99cae2a811df51f (diff) | |
| download | git-53dca334d6c56488994c0c80a247707419cddbfc.tar.xz | |
cache,tree: move basic name compare functions from read-cache to tree
None of base_name_compare(), df_name_compare(), or name_compare()
depended upon a cache_entry or index_state in any way. By moving these
functions to tree.h, half a dozen other files can stop depending upon
cache.h (though that change will be made in a later commit).
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
| -rw-r--r-- | cache.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -557,11 +557,6 @@ extern int verify_ce_order; #define DATA_CHANGED 0x0020 #define TYPE_CHANGED 0x0040 -int base_name_compare(const char *name1, size_t len1, int mode1, - const char *name2, size_t len2, int mode2); -int df_name_compare(const char *name1, size_t len1, int mode1, - const char *name2, size_t len2, int mode2); -int name_compare(const char *name1, size_t len1, const char *name2, size_t len2); int cmp_cache_name_compare(const void *a_, const void *b_); /* add */ |
