Revision 673472a9635805d3b1fcd0038ecc0a9418078685 authored by Johannes Schindelin on 06 February 2023, 08:37:53 UTC, committed by Johannes Schindelin on 06 February 2023, 08:37:53 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 4084321
Raw File
rebase.h
#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 */
back to top