2018-08-10 18:51:29 +02:00
|
|
|
#ifndef REBASE_INTERACTIVE_H
|
|
|
|
#define REBASE_INTERACTIVE_H
|
|
|
|
|
2018-11-10 06:49:10 +01:00
|
|
|
struct strbuf;
|
|
|
|
struct repository;
|
|
|
|
|
2018-08-10 18:51:35 +02:00
|
|
|
void append_todo_help(unsigned edit_todo, unsigned keep_empty,
|
|
|
|
struct strbuf *buf);
|
2018-11-10 06:49:10 +01:00
|
|
|
int edit_todo_list(struct repository *r, unsigned flags);
|
2018-08-10 18:51:29 +02:00
|
|
|
|
|
|
|
#endif
|