https://github.com/git/git
Revision c2cbfbd2e28cbe27c194d62183b42f27a6a5bb87 authored by Junio C Hamano on 01 April 2024, 20:21:22 UTC, committed by Junio C Hamano on 01 April 2024, 20:21:36 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent cebe702
Raw File
Tip revision: c2cbfbd2e28cbe27c194d62183b42f27a6a5bb87 authored by Junio C Hamano on 01 April 2024, 20:21:22 UTC
The thirteenth batch
Tip revision: c2cbfbd
preload-index.h
#ifndef PRELOAD_INDEX_H
#define PRELOAD_INDEX_H

struct index_state;
struct pathspec;
struct repository;

void preload_index(struct index_state *index,
		   const struct pathspec *pathspec,
		   unsigned int refresh_flags);
int repo_read_index_preload(struct repository *,
			    const struct pathspec *pathspec,
			    unsigned refresh_flags);

#endif /* PRELOAD_INDEX_H */
back to top