Whamcloud - gitweb
e2fsck: map PROMPT_* values to prompt messages
[tools/e2fsprogs.git] / misc / mke2fs.h
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 */
14 extern const char * program_name;
15 extern int      quiet;
16 extern int      verbose;
17 extern int      zero_hugefile;
18 extern char **fs_types;
19
20 extern char *get_string_from_profile(char **types, const char *opt,
21                                      const char *def_val);
22 extern int get_int_from_profile(char **types, const char *opt, int def_val);
23 extern int get_bool_from_profile(char **types, const char *opt, int def_val);
24 extern int int_log10(unsigned long long arg);
25
26 /* mk_hugefiles.c */
27 extern errcode_t mk_hugefiles(ext2_filsys fs, const char *device_name);
28
29
30