You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
342 B
16 lines
342 B
/*************
|
|
* Header file for alias.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef ALIAS_H_INCLUDED
|
|
#define ALIAS_H_INCLUDED
|
|
|
|
wordlist * cp_doalias(wordlist *wlist);
|
|
void cp_setalias(char *word, wordlist *wlist);
|
|
void cp_unalias(char *word);
|
|
void cp_paliases(char *word);
|
|
void com_alias(wordlist *wl);
|
|
void com_unalias(wordlist *wl);
|
|
|
|
#endif
|