summaryrefslogtreecommitdiffstats
path: root/mount/mount_guess_fstype.h
blob: 3663f74ca0f6912e1df23e4fc2b1b21de942356d (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);
int have_procfs(void);