]> git.ipfire.org Git - thirdparty/util-linux.git/blame - mount/mount_guess_fstype.h
Imported from util-linux-2.10s tarball.
[thirdparty/util-linux.git] / mount / mount_guess_fstype.h
CommitLineData
5c36a0eb
KZ
1struct mountargs {
2 const char *spec;
3 const char *node;
4 const char *type;
5 int flags;
6 void *data;
7};
8
9extern int verbose;
10
11char *guess_fstype_from_superblock(const char *device);
12int procfsloop(int (*mount_fn)(struct mountargs *), struct mountargs *args,
13 char **type);
14int is_in_procfs(const char *fstype);
66ee8158 15