]>
Commit | Line | Data |
---|---|---|
5b2fd956 SB |
1 | #ifndef RERERE_H |
2 | #define RERERE_H | |
3 | ||
c455c87c | 4 | #include "string-list.h" |
5b2fd956 | 5 | |
c455c87c | 6 | extern int setup_rerere(struct string_list *); |
5b2fd956 | 7 | extern int rerere(void); |
90056966 SG |
8 | extern const char *rerere_path(const char *hex, const char *file); |
9 | extern int has_rerere_resolution(const char *hex); | |
5b2fd956 SB |
10 | |
11 | #endif |