Staging
v0.5.1
Revision 1d4361b0f344188ab5eec6dcea01f61a3a3a1670 authored by Junio C Hamano on 10 September 2018, 17:41:56 UTC, committed by Junio C Hamano on 10 September 2018, 17:41:56 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 46d9a28
Raw File
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