blob: 80d2417185aec5bf5e5308f773db14949ae532f1 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Mike Frysinger38a33f92005-05-09 22:13:22 +00002/*
3 * util.h --- header file defining prototypes for helper functions
4 * used by tune2fs and mke2fs
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00005 *
Mike Frysinger38a33f92005-05-09 22:13:22 +00006 * Copyright 2000 by Theodore Ts'o.
7 *
8 * %Begin-Header%
9 * This file may be redistributed under the terms of the GNU Public
10 * License.
11 * %End-Header%
12 */
13
14extern void proceed_question(void);
Mike Frysinger7f782da2005-10-02 08:10:31 +000015extern void check_plausibility(const char *device, int force);
Mike Frysinger38a33f92005-05-09 22:13:22 +000016extern void parse_journal_opts(char **, int *, int *, const char *opts);
17extern void check_mount(const char *device, int force, const char *type);
18extern int figure_journal_size(int size, ext2_filsys fs);
19extern void print_check_message(ext2_filsys fs);
Mike Frysinger7f782da2005-10-02 08:10:31 +000020extern void make_journal_device(char *journal_device, ext2_filsys fs, int quiet, int force);
21extern void make_journal_blocks(ext2_filsys fs, int journal_size, int journal_flags, int quiet);
"Vladimir N. Oleynik"350865e2005-11-26 11:01:23 +000022extern char *e2fs_set_sbin_path(void);