https://github.com/git/git
Raw File
Tip revision: ac102169ec6f47b8be1fe69b4798de385f102af8 authored by Johannes Schindelin on 13 June 2019, 11:10:34 UTC
ci: split the `linux-gcc` job into two jobs
Tip revision: ac10216
alias.h
#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
back to top