mat: add matrix operations
[transsip-mirror.git] / src / clicmds.h
blob5683f44a8ae7ff4914912ebdede904e94bc33ae5
1 /*
2 * transsip - the telephony toolkit
3 * By Daniel Borkmann <daniel@transsip.org>
4 * Copyright 2011, 2012 Daniel Borkmann <dborkma@tik.ee.ethz.ch>
5 * Subject to the GPL, version 2.
6 */
8 #ifndef CLICMDS_H
9 #define CLICMDS_H
11 #include <readline/readline.h>
13 extern int cmd_help(char *args);
14 extern int cmd_quit(char *args);
15 extern int cmd_stat(char *args);
16 extern int cmd_call(char *args);
17 extern int cmd_hangup(char *args);
18 extern int cmd_take(char *arg);
20 struct shell_cmd {
21 char *name;
22 rl_icpfunc_t *callback;
23 char *doc;
24 struct shell_cmd *sub_cmd;
27 #endif /* CLICMDS_H */