tvl-depot/third_party/git/rebase.h
2020-05-22 17:46:45 +01:00

15 lines
244 B
C

#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 */