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