]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - libxcmd/quit.c
xfsprogs: libxcmd: kill "search" arg in fs_device_number()
[thirdparty/xfsprogs-dev.git] / libxcmd / quit.c
CommitLineData
e246ba5f 1/*
da23017d
NS
2 * Copyright (c) 2003-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
dfc130f3 4 *
da23017d
NS
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
e246ba5f 7 * published by the Free Software Foundation.
dfc130f3 8 *
da23017d
NS
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.
dfc130f3 13 *
da23017d
NS
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
e246ba5f
NS
17 */
18
2a1888c5 19#include <xfs/xfs.h>
3d93ccb7 20#include <xfs/command.h>
e246ba5f
NS
21
22static cmdinfo_t quit_cmd;
23
2a1888c5 24/* ARGSUSED */
e246ba5f
NS
25static int
26quit_f(
27 int argc,
28 char **argv)
29{
30 return 1;
31}
32
33void
34quit_init(void)
35{
ad765595
AM
36 quit_cmd.name = "quit";
37 quit_cmd.altname = "q";
e246ba5f 38 quit_cmd.cfunc = quit_f;
3d93ccb7
NS
39 quit_cmd.argmin = -1;
40 quit_cmd.argmax = -1;
802d66e3 41 quit_cmd.flags = CMD_FLAG_GLOBAL;
48c46ee3 42 quit_cmd.oneline = _("exit the program");
e246ba5f
NS
43
44 add_command(&quit_cmd);
45}