summaryrefslogtreecommitdiffstats
path: root/mount/mount_guess_fstype.h
blob: 9c0903b5413e839f9438024cabcb17fdca0bffc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
struct mountargs {
	const char *spec;
	const char *node;
	const char *type;
	int flags;
	void *data;
};

extern int verbose;

char *guess_fstype_from_superblock(const char *device);
int procfsloop(int (*mount_fn)(struct mountargs *), struct mountargs *args,
	       char **type);
int is_in_procfs(const char *fstype);