]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - libxcmd/quit.c
xfsprogs: handle symlinks etc in fs_table_initialise_mounts()
[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 <xfs/xfs.h>
20 #include <xfs/command.h>
21
22 static cmdinfo_t quit_cmd;
23
24 /* ARGSUSED */
25 static int
26 quit_f(
27 int argc,
28 char **argv)
29 {
30 return 1;
31 }
32
33 void
34 quit_init(void)
35 {
36 quit_cmd.name = "quit";
37 quit_cmd.altname = "q";
38 quit_cmd.cfunc = quit_f;
39 quit_cmd.argmin = -1;
40 quit_cmd.argmax = -1;
41 quit_cmd.flags = CMD_FLAG_GLOBAL;
42 quit_cmd.oneline = _("exit the program");
43
44 add_command(&quit_cmd);
45 }