fuse_opt_parse
if (fuse_opt_parse(args, &opts, fuse_mount_opts, NULL) == -1)
if (fuse_opt_parse(args, &fuse->conf, fuse_lib_opts,
if (fuse_opt_parse(args, &opt, fuse_core_opts, ifuse_process_opt) == -1)
if (fuse_opt_parse(fargs, NULL, fuse_ll_opts, ifuse_ll_opt_proc) == -1) {
DEF(fuse_opt_parse);
int fuse_opt_parse(struct fuse_args *, void *, const struct fuse_opt *,
PROTO(fuse_opt_parse);
assert(fuse_opt_parse(NULL, &data, opts, proc) == 0);
assert(fuse_opt_parse(&args, &data, NULL, proc) == 0);
assert(fuse_opt_parse(&args, &data, opts, NULL) == 0);
assert(fuse_opt_parse(&args, &data, opts, proc) == 0);