| 1 | #ifndef REBASE_INTERACTIVE_H |
| 2 | #define REBASE_INTERACTIVE_H |
| 3 | |
| 4 | struct strbuf; |
| 5 | struct repository; |
| 6 | struct todo_list; |
| 7 | |
| 8 | void append_todo_help(unsigned keep_empty, int command_count, |
| 9 | const char *shortrevisions, const char *shortonto, |
| 10 | struct strbuf *buf); |
| 11 | int edit_todo_list(struct repository *r, struct todo_list *todo_list, |
| 12 | struct todo_list *new_todo, const char *shortrevisions, |
| 13 | const char *shortonto, unsigned flags); |
| 14 | int todo_list_check(struct todo_list *old_todo, struct todo_list *new_todo); |
| 15 | |
| 16 | #endif |