File: mount_util.h

package info (click to toggle)
ntfs-3g 1%3A2014.2.15AR.2-1%2Bdeb8u3
  • links: PTS
  • area: main
  • in suites: jessie
  • size: 5,892 kB
  • ctags: 6,578
  • sloc: ansic: 81,120; sh: 11,407; cpp: 856; makefile: 461
file content (27 lines) | stat: -rw-r--r-- 819 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
    FUSE: Filesystem in Userspace
    Copyright (C) 2001-2007  Miklos Szeredi <miklos@szeredi.hu>

    This program can be distributed under the terms of the GNU LGPLv2.
    See the file COPYING.LIB.
*/

#include <sys/types.h>

int fuse_mnt_add_mount(const char *progname, const char *fsname,
                       const char *mnt, const char *type, const char *opts);
int fuse_mnt_umount(const char *progname, const char *mnt, int lazy);
char *fuse_mnt_resolve_path(const char *progname, const char *orig);
int fuse_mnt_check_fuseblk(void);

#ifdef __SOLARIS__

int fuse_mnt_check_empty(const char *progname, const char *mnt,
			 mode_t rootmode, off_t rootsize);

#else /* __SOLARIS__ */

int fusermount(int unmount, int quiet, int lazy, const char *opts, 
	       const char *origmnt);

#endif /* __SOLARIS__ */