Staging
v0.5.1
Revision d9589d4051537c387b70dc76e430c61b4c85a86d authored by Johannes Schindelin on 04 December 2019, 22:05:10 UTC, committed by Johannes Schindelin on 06 December 2019, 15:31:24 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 5421ddd
Raw File
rebase-interactive.h
#ifndef REBASE_INTERACTIVE_H
#define REBASE_INTERACTIVE_H

struct strbuf;
struct repository;
struct todo_list;

void append_todo_help(unsigned keep_empty, int command_count,
		      const char *shortrevisions, const char *shortonto,
		      struct strbuf *buf);
int edit_todo_list(struct repository *r, struct todo_list *todo_list,
		   struct todo_list *new_todo, const char *shortrevisions,
		   const char *shortonto, unsigned flags);
int todo_list_check(struct todo_list *old_todo, struct todo_list *new_todo);

#endif
back to top