Revision 2613f067dcae7d8feee5e054c6f6885ff3d454d0 authored by Peter Krefting on 31 July 2019, 10:44:47 UTC, committed by Peter Krefting on 31 July 2019, 10:46:31 UTC
Signed-off-by: Peter Krefting <peter@softwolves.pp.se>
1 parent 6b0f1a9
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