diff options
Diffstat (limited to 'e2fsprogs/e2p/e2p.h')
-rw-r--r-- | e2fsprogs/e2p/e2p.h | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/e2fsprogs/e2p/e2p.h b/e2fsprogs/e2p/e2p.h deleted file mode 100644 index 2a2367b9f..000000000 --- a/e2fsprogs/e2p/e2p.h +++ /dev/null | |||
@@ -1,64 +0,0 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | #include "busybox.h" | ||
3 | #include <sys/types.h> /* Needed by dirent.h on netbsd */ | ||
4 | #include <stdio.h> | ||
5 | #include <dirent.h> | ||
6 | |||
7 | #include "../ext2fs/ext2_fs.h" | ||
8 | |||
9 | #define E2P_FEATURE_COMPAT 0 | ||
10 | #define E2P_FEATURE_INCOMPAT 1 | ||
11 | #define E2P_FEATURE_RO_INCOMPAT 2 | ||
12 | #ifndef EXT3_FEATURE_INCOMPAT_EXTENTS | ||
13 | #define EXT3_FEATURE_INCOMPAT_EXTENTS 0x0040 | ||
14 | #endif | ||
15 | |||
16 | /* `options' for print_flags() */ | ||
17 | |||
18 | #define PFOPT_LONG 1 /* Must be 1 for compatibility with `int long_format'. */ | ||
19 | |||
20 | /*int fgetversion (const char * name, unsigned long * version);*/ | ||
21 | /*int fsetversion (const char * name, unsigned long version);*/ | ||
22 | int fgetsetversion(const char * name, unsigned long * get_version, unsigned long set_version); | ||
23 | #define fgetversion(name, version) fgetsetversion(name, version, 0) | ||
24 | #define fsetversion(name, version) fgetsetversion(name, NULL, version) | ||
25 | |||
26 | /*int fgetflags (const char * name, unsigned long * flags);*/ | ||
27 | /*int fsetflags (const char * name, unsigned long flags);*/ | ||
28 | int fgetsetflags(const char * name, unsigned long * get_flags, unsigned long set_flags); | ||
29 | #define fgetflags(name, flags) fgetsetflags(name, flags, 0) | ||
30 | #define fsetflags(name, flags) fgetsetflags(name, NULL, flags) | ||
31 | |||
32 | int getflags (int fd, unsigned long * flags); | ||
33 | int getversion (int fd, unsigned long * version); | ||
34 | int iterate_on_dir (const char * dir_name, | ||
35 | int (*func) (const char *, struct dirent *, void *), | ||
36 | void * private); | ||
37 | /*void list_super(struct ext2_super_block * s);*/ | ||
38 | void list_super2(struct ext2_super_block * s, FILE *f); | ||
39 | #define list_super(s) list_super2(s, stdout) | ||
40 | void print_fs_errors (FILE * f, unsigned short errors); | ||
41 | void print_flags (FILE * f, unsigned long flags, unsigned options); | ||
42 | void print_fs_state (FILE * f, unsigned short state); | ||
43 | int setflags (int fd, unsigned long flags); | ||
44 | int setversion (int fd, unsigned long version); | ||
45 | |||
46 | const char *e2p_feature2string(int compat, unsigned int mask); | ||
47 | int e2p_string2feature(char *string, int *compat, unsigned int *mask); | ||
48 | int e2p_edit_feature(const char *str, __u32 *compat_array, __u32 *ok_array); | ||
49 | |||
50 | int e2p_is_null_uuid(void *uu); | ||
51 | void e2p_uuid_to_str(void *uu, char *out); | ||
52 | const char *e2p_uuid2str(void *uu); | ||
53 | |||
54 | const char *e2p_hash2string(int num); | ||
55 | int e2p_string2hash(char *string); | ||
56 | |||
57 | const char *e2p_mntopt2string(unsigned int mask); | ||
58 | int e2p_string2mntopt(char *string, unsigned int *mask); | ||
59 | int e2p_edit_mntopts(const char *str, __u32 *mntopts, __u32 ok); | ||
60 | |||
61 | unsigned long parse_num_blocks(const char *arg, int log_block_size); | ||
62 | |||
63 | char *e2p_os2string(int os_type); | ||
64 | int e2p_string2os(char *str); | ||