aboutsummaryrefslogtreecommitdiffstats
path: root/misc/tune2fs.h
blob: 7b7e431ee95ddca0a9a753090e8d48aa4fc5fe33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * tune2fs.h - Change the file system parameters on an ext2 file system
 *
 * %Begin-Header%
 * This file may be redistributed under the terms of the GNU Public
 * License.
 * %End-Header%
 */

#ifndef _TUNE2FS_H_
#define _TUNE2FS_H_

#ifdef __cplusplus
extern "C" {
#endif

/* Takes exactly the same args as the tune2fs exectuable.
 * Is the entrypoint for libtune2fs.
 */
int tune2fs_main(int argc, char **argv);

#ifdef __cplusplus
}
#endif

#endif