Staging
v0.5.1
Revision a79fd20c7166f4040a82d257c893f52b0da6aeba authored by Johannes Schindelin on 12 February 2021, 14:50:00 UTC, committed by Johannes Schindelin on 12 February 2021, 14:50:00 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 8f80393
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