Stephan Beyer | 5b2fd95 | 2008-07-09 14:58:57 +0200 | [diff] [blame] | 1 | #ifndef RERERE_H |
| 2 | #define RERERE_H |
| 3 | |
Johannes Schindelin | c455c87 | 2008-07-21 19:03:49 +0100 | [diff] [blame] | 4 | #include "string-list.h" |
Stephan Beyer | 5b2fd95 | 2008-07-09 14:58:57 +0200 | [diff] [blame] | 5 | |
Johannes Schindelin | c455c87 | 2008-07-21 19:03:49 +0100 | [diff] [blame] | 6 | extern int setup_rerere(struct string_list *); |
Stephan Beyer | 5b2fd95 | 2008-07-09 14:58:57 +0200 | [diff] [blame] | 7 | extern int rerere(void); |
SZEDER Gábor | 9005696 | 2009-02-14 23:21:04 +0100 | [diff] [blame] | 8 | extern const char *rerere_path(const char *hex, const char *file); |
| 9 | extern int has_rerere_resolution(const char *hex); |
Stephan Beyer | 5b2fd95 | 2008-07-09 14:58:57 +0200 | [diff] [blame] | 10 | |
| 11 | #endif |