2008-07-09 14:58:57 +02:00
|
|
|
#ifndef RERERE_H
|
|
|
|
#define RERERE_H
|
|
|
|
|
2008-07-21 20:03:49 +02:00
|
|
|
#include "string-list.h"
|
2008-07-09 14:58:57 +02:00
|
|
|
|
2008-07-21 20:03:49 +02:00
|
|
|
extern int setup_rerere(struct string_list *);
|
2008-07-09 14:58:57 +02:00
|
|
|
extern int rerere(void);
|
2009-02-14 23:21:04 +01:00
|
|
|
extern const char *rerere_path(const char *hex, const char *file);
|
|
|
|
extern int has_rerere_resolution(const char *hex);
|
2008-07-09 14:58:57 +02:00
|
|
|
|
|
|
|
#endif
|