Revision c508c30968a54913b1c1f08fcfccd6593a74544a authored by Junio C Hamano on 19 January 2023, 21:48:00 UTC, committed by Junio C Hamano on 19 January 2023, 21:48:00 UTC
* maint-2.34:
  attr: adjust a mismatched data type
2 parent s 02f4981 + f39fe8f
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