xref: /aosp_15_r20/external/e2fsprogs/misc/tune2fs.h (revision 6a54128f25917bfc36a8a6e9d722c04a0b4641b6)
1*6a54128fSAndroid Build Coastguard Worker /*
2*6a54128fSAndroid Build Coastguard Worker  * tune2fs.h - Change the file system parameters on an ext2 file system
3*6a54128fSAndroid Build Coastguard Worker  *
4*6a54128fSAndroid Build Coastguard Worker  * %Begin-Header%
5*6a54128fSAndroid Build Coastguard Worker  * This file may be redistributed under the terms of the GNU Public
6*6a54128fSAndroid Build Coastguard Worker  * License.
7*6a54128fSAndroid Build Coastguard Worker  * %End-Header%
8*6a54128fSAndroid Build Coastguard Worker  */
9*6a54128fSAndroid Build Coastguard Worker 
10*6a54128fSAndroid Build Coastguard Worker #ifndef _TUNE2FS_H_
11*6a54128fSAndroid Build Coastguard Worker #define _TUNE2FS_H_
12*6a54128fSAndroid Build Coastguard Worker 
13*6a54128fSAndroid Build Coastguard Worker #ifdef __cplusplus
14*6a54128fSAndroid Build Coastguard Worker extern "C" {
15*6a54128fSAndroid Build Coastguard Worker #endif
16*6a54128fSAndroid Build Coastguard Worker 
17*6a54128fSAndroid Build Coastguard Worker /* Takes exactly the same args as the tune2fs executable.
18*6a54128fSAndroid Build Coastguard Worker  * Is the entry point for libtune2fs.
19*6a54128fSAndroid Build Coastguard Worker  */
20*6a54128fSAndroid Build Coastguard Worker int tune2fs_main(int argc, char **argv);
21*6a54128fSAndroid Build Coastguard Worker 
22*6a54128fSAndroid Build Coastguard Worker #ifdef __cplusplus
23*6a54128fSAndroid Build Coastguard Worker }
24*6a54128fSAndroid Build Coastguard Worker #endif
25*6a54128fSAndroid Build Coastguard Worker 
26*6a54128fSAndroid Build Coastguard Worker #endif
27