summaryrefslogtreecommitdiff
path: root/rebase.h
blob: 203b43728237454b4f0aa4fbb962d5e17f6b5855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef REBASE_H
#define REBASE_H
 
enum rebase_type {
	REBASE_INVALID = -1,
	REBASE_FALSE = 0,
	REBASE_TRUE,
	REBASE_MERGES,
	REBASE_INTERACTIVE
};
 
enum rebase_type rebase_parse_value(const char *value);
 
#endif /* REBASE */