summaryrefslogtreecommitdiffstats
path: root/name-hash.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* name-hash: add index_dir_find()Jeff Hostetler2024-02-271-1/+6
| | | | | | | | | | | | | | | | index_dir_exists() returns a boolean to indicate if there is a case-insensitive match in the directory name-hash, but does not provide the caller with the exact spelling of that match. Create index_dir_find() to do the case-insensitive search *and* optionally return the spelling of the matched directory prefix in a provided strbuf. To avoid code duplication, convert index_dir_exists() to be a trivial wrapper around the new index_dir_find(). Signed-off-by: Jeff Hostetler <jeffhostetler@github.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
* name-hash.h: move declarations for name-hash.c from cache.hElijah Newren2023-06-211-0/+16
Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>