2 * Copyright (C) 2009 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * @defgroup command command
28 * Maximum number of commands.
30 #define MAX_COMMANDS 10
33 * Maximum number of options in a command (+1)
35 #define MAX_OPTIONS 20
38 * Maximum number of usage summary lines (+1)
42 typedef struct command_t command_t
;
43 typedef enum command_type_t command_type_t
;
46 * Command specification.
49 /** Function implementing the command */
50 int (*call
)(int, char*[]);
51 /** short option character */
53 /** long option string */
55 /** description of the command */
57 /** usage summary of the command */
58 char *line
[MAX_LINES
];
59 /** list of options the command accepts */
61 /** long option string of the option */
63 /** short option character of the option */
65 /** expected argument to option, no/req/opt_argument */
67 /** description of the option */
69 } options
[MAX_OPTIONS
];
73 * Options of the active command.
75 extern struct option command_opts
[];
80 void command_register(command_t command
);
85 int command_dispatch(int argc
, char *argv
[]);
88 * Show usage information of active command.
90 int command_usage(char *error
);
92 #endif /* COMMAND_H_ @}*/