The sixteenth batch
[git/gitster.git] / resolve-undo.h
blob7ed11a1c59b8192df9bdc9bdad560e06d9f0b9e5
1 #ifndef RESOLVE_UNDO_H
2 #define RESOLVE_UNDO_H
4 struct cache_entry;
5 struct index_state;
6 struct pathspec;
7 struct string_list;
9 #include "hash.h"
11 struct resolve_undo_info {
12 unsigned int mode[3];
13 struct object_id oid[3];
16 void record_resolve_undo(struct index_state *, struct cache_entry *);
17 void resolve_undo_write(struct strbuf *, struct string_list *,
18 const struct git_hash_algo *algop);
19 struct string_list *resolve_undo_read(const char *, unsigned long,
20 const struct git_hash_algo *algop);
21 void resolve_undo_clear_index(struct index_state *);
22 int unmerge_index_entry(struct index_state *, const char *, struct resolve_undo_info *, unsigned);
23 void unmerge_index(struct index_state *, const struct pathspec *, unsigned);
25 #endif