Blame rebase-interactive.h

Packit Service fe3200
#ifndef REBASE_INTERACTIVE_H
Packit Service fe3200
#define REBASE_INTERACTIVE_H
Packit Service fe3200
Packit Service fe3200
struct strbuf;
Packit Service fe3200
struct repository;
Packit Service fe3200
struct todo_list;
Packit Service fe3200
Packit Service fe3200
void append_todo_help(int command_count,
Packit Service fe3200
		      const char *shortrevisions, const char *shortonto,
Packit Service fe3200
		      struct strbuf *buf);
Packit Service fe3200
int edit_todo_list(struct repository *r, struct todo_list *todo_list,
Packit Service fe3200
		   struct todo_list *new_todo, const char *shortrevisions,
Packit Service fe3200
		   const char *shortonto, unsigned flags);
Packit Service fe3200
Packit Service fe3200
int todo_list_check(struct todo_list *old_todo, struct todo_list *new_todo);
Packit Service fe3200
int todo_list_check_against_backup(struct repository *r,
Packit Service fe3200
				   struct todo_list *todo_list);
Packit Service fe3200
Packit Service fe3200
int check_todo_list_from_file(struct repository *r);
Packit Service fe3200
Packit Service fe3200
#endif