Fixed variable const qualifiers.
[dabba.git] / dabba / include / dabba / help.h
blob961202f3e0b6990bbcf13da910771d73f69be863
1 /* __LICENSE_HEADER_BEGIN__ */
3 /*
4 * Copyright (C) 2012 Emmanuel Roullit <emmanuel.roullit@gmail.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
22 /* __LICENSE_HEADER_END__ */
24 #ifndef HELP_H
25 #define HELP_H
27 struct option;
29 void show_usage(const struct option *opt);
30 int cmd_help(int argc, const char **argv);
31 void help_unknown_cmd(const char *const cmd);
33 #endif /* HELP_H */