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;
|
2019-01-29 16:01:49 +01:00
|
|
|
struct todo_list;
|
2018-11-10 06:49:10 +01:00
|
|
|
|
2019-03-05 20:18:02 +01:00
|
|
|
void append_todo_help(unsigned keep_empty, int command_count,
|
|
|
|
const char *shortrevisions, const char *shortonto,
|
2018-08-10 18:51:35 +02:00
|
|
|
struct strbuf *buf);
|
2019-03-05 20:18:03 +01:00
|
|
|
int edit_todo_list(struct repository *r, struct todo_list *todo_list,
|
|
|
|
struct todo_list *new_todo, const char *shortrevisions,
|
|
|
|
const char *shortonto, unsigned flags);
|
2019-01-29 16:01:49 +01:00
|
|
|
int todo_list_check(struct todo_list *old_todo, struct todo_list *new_todo);
|
2018-08-10 18:51:29 +02:00
|
|
|
|
|
|
|
#endif
|