Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rerere.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13313f3f2b2cc6a8d895305b7ac92c12c1753682 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef RERERE_H
#define RERERE_H

#include "string-list.h"

extern int setup_rerere(struct string_list *);
extern int rerere(void);
extern const char *rerere_path(const char *hex, const char *file);
extern int has_rerere_resolution(const char *hex);

#endif