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