blob: 7b7e431ee95ddca0a9a753090e8d48aa4fc5fe33 [file] [log] [blame]
JP Abgralleeaf45a2014-11-20 23:19:25 -08001/*
2 * tune2fs.h - Change the file system parameters on an ext2 file system
3 *
4 * %Begin-Header%
5 * This file may be redistributed under the terms of the GNU Public
6 * License.
7 * %End-Header%
8 */
9
Tao Bao9150f932015-07-13 17:14:21 -070010#ifndef _TUNE2FS_H_
11#define _TUNE2FS_H_
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
JP Abgralleeaf45a2014-11-20 23:19:25 -080017/* Takes exactly the same args as the tune2fs exectuable.
18 * Is the entrypoint for libtune2fs.
19 */
20int tune2fs_main(int argc, char **argv);
Tao Bao9150f932015-07-13 17:14:21 -070021
22#ifdef __cplusplus
23}
24#endif
25
26#endif