JP Abgrall | eeaf45a | 2014-11-20 23:19:25 -0800 | [diff] [blame] | 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 | |
Tao Bao | 9150f93 | 2015-07-13 17:14:21 -0700 | [diff] [blame] | 10 | #ifndef _TUNE2FS_H_ |
| 11 | #define _TUNE2FS_H_ |
| 12 | |
| 13 | #ifdef __cplusplus |
| 14 | extern "C" { |
| 15 | #endif |
| 16 | |
JP Abgrall | eeaf45a | 2014-11-20 23:19:25 -0800 | [diff] [blame] | 17 | /* Takes exactly the same args as the tune2fs exectuable. |
| 18 | * Is the entrypoint for libtune2fs. |
| 19 | */ |
| 20 | int tune2fs_main(int argc, char **argv); |
Tao Bao | 9150f93 | 2015-07-13 17:14:21 -0700 | [diff] [blame] | 21 | |
| 22 | #ifdef __cplusplus |
| 23 | } |
| 24 | #endif |
| 25 | |
| 26 | #endif |