util-linux/mount/mount_guess_fstype.h

16 lines
319 B
C
Raw Normal View History

2006-12-06 17:25:37 -06:00
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);