]> git.ipfire.org Git - thirdparty/git.git/blame - rebase-interactive.h
Merge branch 'rj/add-i-leak-fix'
[thirdparty/git.git] / rebase-interactive.h
CommitLineData
145e05ac
AG
1#ifndef REBASE_INTERACTIVE_H
2#define REBASE_INTERACTIVE_H
3
36e7ed69
NTND
4struct strbuf;
5struct repository;
6ca89c6f 6struct todo_list;
36e7ed69 7
d48e5e21 8void append_todo_help(int command_count,
af1fc3ad 9 const char *shortrevisions, const char *shortonto,
a9f5476f 10 struct strbuf *buf);
a930eb03
AG
11int edit_todo_list(struct repository *r, struct todo_list *todo_list,
12 struct todo_list *new_todo, const char *shortrevisions,
13 const char *shortonto, unsigned flags);
5a5445d8 14
6ca89c6f 15int todo_list_check(struct todo_list *old_todo, struct todo_list *new_todo);
5a5445d8
AG
16int todo_list_check_against_backup(struct repository *r,
17 struct todo_list *todo_list);
145e05ac
AG
18
19#endif