]> git.ipfire.org Git - thirdparty/git.git/blob - alias.h
Merge tag 'l10n-2.24.0-rnd2' of https://github.com/git-l10n/git-po
[thirdparty/git.git] / alias.h
1 #ifndef ALIAS_H
2 #define ALIAS_H
3
4 struct string_list;
5
6 char *alias_lookup(const char *alias);
7 int split_cmdline(char *cmdline, const char ***argv);
8 /* Takes a negative value returned by split_cmdline */
9 const char *split_cmdline_strerror(int cmdline_errno);
10 void list_aliases(struct string_list *list);
11
12 #endif