fuse_opt
const struct fuse_opt *, fuse_opt_proc_t);
int fuse_opt_match(const struct fuse_opt *, const char *);
static struct fuse_opt refuse_opts[] = {
static struct fuse_opt fuse_lowlevel_opts[] = {
static const struct fuse_opt *
find_opt(const struct fuse_opt *opts, const char *opt, ssize_t *sep_idx)
fuse_opt_match(const struct fuse_opt *opts, const char *opt)
const struct fuse_opt* opt, ssize_t sep_idx, void* data,
const struct fuse_opt *opts, fuse_opt_proc_t proc, bool is_opt)
const struct fuse_opt *opt = find_opt(opts, arg, &sep_idx);
const struct fuse_opt *opts, fuse_opt_proc_t proc)
const struct fuse_opt *opts, fuse_opt_proc_t proc)
const struct fuse_opt *opts, fuse_opt_proc_t proc)
struct fuse_opt o1[] = { FUSE_OPT_KEY("-x" , 0), FUSE_OPT_END };
struct fuse_opt o2[] = { FUSE_OPT_KEY("foo" , 0), FUSE_OPT_END };
struct fuse_opt o3[] = { FUSE_OPT_KEY("foo=" , 0), FUSE_OPT_END };
struct fuse_opt o4[] = { FUSE_OPT_KEY("foo=%s", 0), FUSE_OPT_END };
struct fuse_opt o5[] = { FUSE_OPT_KEY("-x " , 0), FUSE_OPT_END };
struct fuse_opt o6[] = { FUSE_OPT_KEY("-x %s" , 0), FUSE_OPT_END };
static struct fuse_opt foofs_opts[] = {