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