• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
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 
10 #ifndef _TUNE2FS_H_
11 #define _TUNE2FS_H_
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 /* Takes exactly the same args as the tune2fs executable.
18  * Is the entry point for libtune2fs.
19  */
20 int tune2fs_main(int argc, char **argv);
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 
26 #endif
27