]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - libxcmd/quit.c
xfs_io: fix inode command help and argsmax
[thirdparty/xfsprogs-dev.git] / libxcmd / quit.c
1 /*
2 * Copyright (c) 2003-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19 #include "platform_defs.h"
20 #include "command.h"
21 #include "../quota/init.h"
22
23 static cmdinfo_t quit_cmd;
24
25 /* ARGSUSED */
26 static int
27 quit_f(
28 int argc,
29 char **argv)
30 {
31 return 1;
32 }
33
34 void
35 quit_init(void)
36 {
37 quit_cmd.name = "quit";
38 quit_cmd.altname = "q";
39 quit_cmd.cfunc = quit_f;
40 quit_cmd.argmin = -1;
41 quit_cmd.argmax = -1;
42 quit_cmd.flags = CMD_FLAG_GLOBAL | CMD_ALL_FSTYPES;
43 quit_cmd.oneline = _("exit the program");
44
45 add_command(&quit_cmd);
46 }