summaryrefslogtreecommitdiff
path: root/libfuse-lite/mount_util.h (plain)
blob: d1b0899f4fe3e9b84fd2b9d0b1fac2d1a3c410cb
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#ifdef HAVE_SYS_TYPES_H
10#include <sys/types.h>
11#endif
12
13
14int fuse_mnt_add_mount(const char *progname, const char *fsname,
15 const char *mnt, const char *type, const char *opts);
16int fuse_mnt_umount(const char *progname, const char *mnt, int lazy);
17char *fuse_mnt_resolve_path(const char *progname, const char *orig);
18int fuse_mnt_check_fuseblk(void);
19
20int fusermount(int unmount, int quiet, int lazy, const char *opts,
21 const char *origmnt);
22
23