]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - libxcmd/quit.c
xfs_db: handle realtime bitmap / summary files as text
[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
dcabd4e7 19#include "platform_defs.h"
6b803e5a 20#include "command.h"
b20b6c22 21#include "../quota/init.h"
e246ba5f
NS
22
23static cmdinfo_t quit_cmd;
24
2a1888c5 25/* ARGSUSED */
e246ba5f
NS
26static int
27quit_f(
28 int argc,
29 char **argv)
30{
31 return 1;
32}
33
34void
35quit_init(void)
36{
ad765595
AM
37 quit_cmd.name = "quit";
38 quit_cmd.altname = "q";
e246ba5f 39 quit_cmd.cfunc = quit_f;
3d93ccb7
NS
40 quit_cmd.argmin = -1;
41 quit_cmd.argmax = -1;
92058d25 42 quit_cmd.flags = CMD_FLAG_ONESHOT | CMD_FLAG_LIBRARY;
48c46ee3 43 quit_cmd.oneline = _("exit the program");
e246ba5f
NS
44
45 add_command(&quit_cmd);
46}