Revision 63a5650a4973f516ea5fd356f9faab325a049bc8 authored by Matthias Rüster on 05 January 2020, 14:55:00 UTC, committed by Matthias Rüster on 10 January 2020, 11:04:03 UTC
Signed-off-by: Matthias Rüster <matthias.ruester@gmail.com>
Reviewed-by: Ralf Thielow <ralf.thielow@gmail.com>
Reviewed-by: Phillip Szelat <phillip.szelat@gmail.com>
1 parent 75449c1
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