test-lib: add the '--stress' option to run a test repeatedly under load
[git.git] / alias.h
blobaef4843bb7821e87dcbe017ddfff64b8d6681fca
1 #ifndef ALIAS_H
2 #define ALIAS_H
4 struct string_list;
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);
12 #endif