~ubuntu-branches/ubuntu/edgy/xfsprogs/edgy

« back to all changes in this revision

Viewing changes to libxcmd/quit.c

  • Committer: Bazaar Package Importer
  • Author(s): Nathan Scott
  • Date: 2005-11-16 16:32:35 UTC
  • Revision ID: james.westby@ubuntu.com-20051116163235-synnef6xjj18ny42
Tags: 2.7.7-1
* New upstream release.
* Add support for (optional) ATTR2 format extension (closes: #336350)
* Allow gcc -pedantic option for C++ <xfs.h> users (closes: #249429)
* Fix segv in xfs_db frag command (closes: #338207)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 = -1;
 
42
        quit_cmd.oneline = _("exit the program");
 
43
 
 
44
        add_command(&quit_cmd);
 
45
}