rebase-interactive.hon commit sequencer: refactor sequencer_add_exec_commands() to work on a todo_list (683153a)
   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