]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - io/init.h
xfs_quota: add capabilities for use on non-XFS filesystems
[thirdparty/xfsprogs-dev.git] / io / init.h
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 #define CMD_NOFILE_OK (1<<0) /* command doesn't need an open file */
20 #define CMD_NOMAP_OK (1<<1) /* command doesn't need a mapped region */
21 #define CMD_FOREIGN_OK CMD_FLAG_FOREIGN_OK
22
23 extern char *progname;
24 extern int exitcode;
25 extern int expert;
26 extern size_t pagesize;
27 extern struct timeval stopwatch;
28
29 extern void init_cvtnum(size_t *blocksize, size_t *sectsize);