mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
ef3ca95475
I looped over the toplevel header files, creating a temporary two-line C program for each consisting of #include "git-compat-util.h" #include $HEADER This patch is the result of manually fixing errors in compiling those tiny programs. Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
19 lines
630 B
C
19 lines
630 B
C
#ifndef RESOLVE_UNDO_H
|
|
#define RESOLVE_UNDO_H
|
|
|
|
#include "cache.h"
|
|
|
|
struct resolve_undo_info {
|
|
unsigned int mode[3];
|
|
struct object_id oid[3];
|
|
};
|
|
|
|
extern void record_resolve_undo(struct index_state *, struct cache_entry *);
|
|
extern void resolve_undo_write(struct strbuf *, struct string_list *);
|
|
extern struct string_list *resolve_undo_read(const char *, unsigned long);
|
|
extern void resolve_undo_clear_index(struct index_state *);
|
|
extern int unmerge_index_entry_at(struct index_state *, int);
|
|
extern void unmerge_index(struct index_state *, const struct pathspec *);
|
|
extern void unmerge_marked_index(struct index_state *);
|
|
|
|
#endif
|