9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
24 lines
369 B
C
24 lines
369 B
C
#ifndef _FSTAB_H
|
|
#define _FSTAB_H
|
|
|
|
#define _PATH_FSTAB "/etc/fstab"
|
|
#define FSTAB "/etc/fstab"
|
|
|
|
#define FSTAB_RW "rw"
|
|
#define FSTAB_RQ "rq"
|
|
#define FSTAB_RO "ro"
|
|
#define FSTAB_SW "sw"
|
|
#define FSTAB_XX "xx"
|
|
|
|
struct fstab {
|
|
char *fs_spec;
|
|
char *fs_file;
|
|
char *fs_vfstype;
|
|
char *fs_mntops;
|
|
const char *fs_type;
|
|
int fs_freq;
|
|
int fs_passno;
|
|
};
|
|
|
|
#endif /* _FSTAB_H */
|