pub unsafe extern "C" fn fuse_new(
ch: *mut fuse_chan,
args: *mut fuse_args,
op: *const fuse_operations,
op_size: size_t,
user_data: *mut c_void,
) -> *mut fuseExpand description
Create a new FUSE filesystem.
@param ch the communication channel @param args argument vector @param op the filesystem operations @param op_size the size of the fuse_operations structure @param user_data user data supplied in the context during the init() method @return the created FUSE handle