diff options
author | Elijah Newren <newren@gmail.com> | 2023-05-16 06:33:52 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-06-21 13:39:53 -0700 |
commit | fbffdfb11cba61dbce46442d0b136dcf2ddaeadc (patch) | |
tree | a06f221f83957ecbcce1b9999604c73e69f303f7 /cache.h | |
parent | baf889c2cdc616c7eff67f49608f1d93642c13f0 (diff) |
preload-index.h: move declarations for preload-index.c from elsewhere
We already have a preload-index.c file; move the declarations for the
functions in that file into a new preload-index.h. These were
previously split between cache.h and repository.h.
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 | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -318,9 +318,6 @@ extern struct index_state the_index; /* Initialize and use the cache information */ struct lock_file; -void preload_index(struct index_state *index, - const struct pathspec *pathspec, - unsigned int refresh_flags); int do_read_index(struct index_state *istate, const char *path, int must_exist); /* for testting only! */ int read_index_from(struct index_state *, const char *path, |