Revision c508c30968a54913b1c1f08fcfccd6593a74544a authored by Junio C Hamano on 19 January 2023, 21:48:00 UTC, committed by Junio C Hamano on 19 January 2023, 21:48:00 UTC
* maint-2.34:
  attr: adjust a mismatched data type
2 parent s 02f4981 + f39fe8f
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