blob: 5c2fb8e6ec51acd7a9183127341b882d2bb4201a [file] [log] [blame]
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001/*
2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
4
5 This program can be distributed under the terms of the GNU LGPLv2.
6 See the file COPYING.LIB.
7*/
8
9#include <sys/types.h>
10
11int fuse_mnt_add_mount(const char *progname, const char *fsname,
12 const char *mnt, const char *type, const char *opts);
13int fuse_mnt_umount(const char *progname, const char *abs_mnt,
14 const char *rel_mnt, int lazy);
15char *fuse_mnt_resolve_path(const char *progname, const char *orig);
16int fuse_mnt_check_empty(const char *progname, const char *mnt,
17 mode_t rootmode, off64_t rootsize);
18int fuse_mnt_check_fuseblk(void);