diff options
Diffstat (limited to 'client/commands.c')
-rw-r--r-- | client/commands.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/client/commands.c b/client/commands.c new file mode 100644 index 0000000..ea9358d --- /dev/null +++ b/client/commands.c @@ -0,0 +1,20 @@ +/* + * BIRD Client -- Command Handling + * + * (c) 1999--2000 Martin Mares <mj@ucw.cz> + * + * Can be freely distributed and used under the terms of the GNU GPL. + */ + +#include "nest/bird.h" +#include "client/client.h" + +struct cmd_info { + char *command; + char *args; + char *help; +}; + +struct cmd_info command_table[] = { +#include "conf/commands.h" +}; |