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 "fuse.h"
10 
11 struct fuse_session;
12 struct fuse_chan;
13 struct fuse_lowlevel_ops;
14 struct fuse_req;
15 
16 struct fuse_cmd {
17     char *buf;
18     size_t buflen;
19     struct fuse_chan *ch;
20 };
21 
22 struct fuse_chan *fuse_kern_chan_new(int fd);
23 
24 void fuse_kern_unmount(const char *mountpoint, int fd);
25 int fuse_kern_mount(const char *mountpoint, struct fuse_args *args);
26