Commit | Line | Data |
---|---|---|
145e05ac AG |
1 | #ifndef REBASE_INTERACTIVE_H |
2 | #define REBASE_INTERACTIVE_H | |
3 | ||
36e7ed69 NTND |
4 | struct strbuf; |
5 | struct repository; | |
6ca89c6f | 6 | struct todo_list; |
36e7ed69 | 7 | |
a9f5476f AG |
8 | void append_todo_help(unsigned edit_todo, unsigned keep_empty, |
9 | struct strbuf *buf); | |
36e7ed69 | 10 | int edit_todo_list(struct repository *r, unsigned flags); |
6ca89c6f | 11 | int todo_list_check(struct todo_list *old_todo, struct todo_list *new_todo); |
145e05ac AG |
12 | |
13 | #endif |