Staging
v0.5.1
Revision 6ff7f460394745395f3eec1e414ad2300c6a402f authored by Johannes Schindelin on 12 February 2021, 14:50:05 UTC, committed by Johannes Schindelin on 12 February 2021, 14:50:05 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 2d1142a
Raw File
rebase.h
#ifndef REBASE_H
#define REBASE_H

enum rebase_type {
	REBASE_INVALID = -1,
	REBASE_FALSE = 0,
	REBASE_TRUE,
	REBASE_PRESERVE,
	REBASE_MERGES,
	REBASE_INTERACTIVE
};

enum rebase_type rebase_parse_value(const char *value);

#endif /* REBASE */
back to top