rebase.h 244 B

12345678910111213141516
  1. #ifndef REBASE_H
  2. #define REBASE_H
  3. enum rebase_type {
  4. REBASE_INVALID = -1,
  5. REBASE_FALSE = 0,
  6. REBASE_TRUE,
  7. REBASE_PRESERVE,
  8. REBASE_MERGES,
  9. REBASE_INTERACTIVE
  10. };
  11. enum rebase_type rebase_parse_value(const char *value);
  12. #endif /* REBASE */