bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1 | /* |
| 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 | |
| 11 | int fuse_mnt_add_mount(const char *progname, const char *fsname, |
| 12 | const char *mnt, const char *type, const char *opts); |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 13 | int fuse_mnt_remove_mount(const char *progname, const char *mnt); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 14 | int fuse_mnt_umount(const char *progname, const char *abs_mnt, |
| 15 | const char *rel_mnt, int lazy); |
| 16 | char *fuse_mnt_resolve_path(const char *progname, const char *orig); |
| 17 | int fuse_mnt_check_empty(const char *progname, const char *mnt, |
Matt Mower | 523a059 | 2015-12-13 11:31:00 -0600 | [diff] [blame] | 18 | mode_t rootmode, loff_t rootsize); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 19 | int fuse_mnt_check_fuseblk(void); |