fuse_mt.c

来自「LINUX下读写NTFS分区的工具。 已经集成了通过LIBCONV库支持中文的」· C语言 代码 · 共 26 行

C
26
字号
/*    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 "config.h"#include "fuse_i.h"#include "fuse_lowlevel.h"#include <stdio.h>#include <stdlib.h>#include <string.h>#include <pthread.h>#include <assert.h>int fuse_loop_mt(struct fuse *f){    if (f == NULL)        return -1;    return fuse_session_loop_mt(fuse_get_session(f));}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?