mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
900569661b
Both rerere.c and builtin-rerere.c define the static functions rr_path() and has_resolution() the exact same way. To eliminate this code duplication this patch turns the functions in rerere.c non-static, and makes builtin-rerere.c use them. Also, since this puts these two functions into the global namespace, rename them to rerere_path() and has_rerere_resolution(), respectively, and rename their "name" parameter to "hex", because it better reflects what that parameter actually is. Signed-off-by: SZEDER Gábor <szeder@ira.uka.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
11 lines
259 B
C
11 lines
259 B
C
#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
|