]> git.ipfire.org Git - thirdparty/git.git/blame - rebase-interactive.h
l10n: it.po: update the Italian translation for Git 2.24.0 round #2
[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
af1fc3ad
AG
8void append_todo_help(unsigned keep_empty, int command_count,
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);
6ca89c6f 14int todo_list_check(struct todo_list *old_todo, struct todo_list *new_todo);
145e05ac
AG
15
16#endif