187b5032d67fc3caa9368398338834ffaaefe35d
   1#ifndef REBASE_INTERACTIVE_H
   2#define REBASE_INTERACTIVE_H
   3
   4struct strbuf;
   5struct repository;
   6struct todo_list;
   7
   8void append_todo_help(unsigned edit_todo, unsigned keep_empty,
   9                      struct 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);
  12
  13#endif