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