1/*
2 * mke2fs.h
3 *
4 * Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5 * 	2003, 2004, 2005 by Theodore Ts'o.
6 *
7 * %Begin-Header%
8 * This file may be redistributed under the terms of the GNU Public
9 * License.
10 * %End-Header%
11 */
12
13/* mke2fs.c */
14extern const char * program_name;
15extern int	quiet;
16extern int	verbose;
17extern int	zero_hugefile;
18extern char **fs_types;
19
20extern char *get_string_from_profile(char **types, const char *opt,
21				     const char *def_val);
22extern int get_int_from_profile(char **types, const char *opt, int def_val);
23extern int get_bool_from_profile(char **types, const char *opt, int def_val);
24extern int int_log10(unsigned long long arg);
25
26/* mk_hugefiles.c */
27extern errcode_t mk_hugefiles(ext2_filsys fs, const char *device_name);
28
29
30
31