diff options
Diffstat (limited to 'e2fsprogs/util.h')
-rw-r--r-- | e2fsprogs/util.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/e2fsprogs/util.h b/e2fsprogs/util.h index 55cb84937..f6dc08ac1 100644 --- a/e2fsprogs/util.h +++ b/e2fsprogs/util.h | |||
@@ -11,8 +11,11 @@ | |||
11 | */ | 11 | */ |
12 | 12 | ||
13 | extern void proceed_question(void); | 13 | extern void proceed_question(void); |
14 | extern void check_plausibility(const char *device); | 14 | extern void check_plausibility(const char *device, int force); |
15 | extern void parse_journal_opts(char **, int *, int *, const char *opts); | 15 | extern void parse_journal_opts(char **, int *, int *, const char *opts); |
16 | extern void check_mount(const char *device, int force, const char *type); | 16 | extern void check_mount(const char *device, int force, const char *type); |
17 | extern int figure_journal_size(int size, ext2_filsys fs); | 17 | extern int figure_journal_size(int size, ext2_filsys fs); |
18 | extern void print_check_message(ext2_filsys fs); | 18 | extern void print_check_message(ext2_filsys fs); |
19 | extern void make_journal_device(char *journal_device, ext2_filsys fs, int quiet, int force); | ||
20 | extern void make_journal_blocks(ext2_filsys fs, int journal_size, int journal_flags, int quiet); | ||
21 | |||