1b593e1ea4
git-subtree-dir: third_party/git git-subtree-split: cb715685942260375e1eb8153b0768a376e4ece7
12 lines
310 B
C
12 lines
310 B
C
#ifndef ALIAS_H
|
|
#define ALIAS_H
|
|
|
|
struct string_list;
|
|
|
|
char *alias_lookup(const char *alias);
|
|
int split_cmdline(char *cmdline, const char ***argv);
|
|
/* Takes a negative value returned by split_cmdline */
|
|
const char *split_cmdline_strerror(int cmdline_errno);
|
|
void list_aliases(struct string_list *list);
|
|
|
|
#endif
|