comparison mcabber/src/commands.h @ 285:edc263a5d350

Add /alias command Add /alias command and update completion sytem. Aliases are expanded before cmd_get() is called.
author Mikael Berthe <mikael@lilotux.net>
date Thu, 07 Jul 2005 23:25:20 +0100
parents 8e30b2bb380e
children 1eea0fa0955e
comparison
equal deleted inserted replaced
284:f879b17ecb8e 285:edc263a5d350
12 } cmd; 12 } cmd;
13 13
14 void cmd_init(void); 14 void cmd_init(void);
15 cmd *cmd_get(const char *command); 15 cmd *cmd_get(const char *command);
16 int process_line(char *line); 16 int process_line(char *line);
17 char *expandalias(char *line);
17 18
18 #endif /* __COMMANDS_H__ */ 19 #endif /* __COMMANDS_H__ */
19 20