1#ifndef REBASE_INTERACTIVE_H
2#define REBASE_INTERACTIVE_H
34
struct strbuf;
5struct repository;
6struct todo_list;
78
void append_todo_help(unsigned edit_todo, unsigned keep_empty,
9struct strbuf *buf);
10int edit_todo_list(struct repository *r, unsigned flags);
11int todo_list_check(struct todo_list *old_todo, struct todo_list *new_todo);
1213
#endif