fuse_opt_insert_arg
return (fuse_opt_insert_arg(args, args->argc, name));
DEF(fuse_opt_insert_arg);
int fuse_opt_insert_arg(struct fuse_args *, int, const char *);
PROTO(fuse_opt_insert_arg);
if (fuse_opt_insert_arg(&args, 1, "test") != 0)
if (fuse_opt_insert_arg(&args, 1, "-d") != 0)
if (fuse_opt_insert_arg(&args, 3, "barfoo") != 0)
if (fuse_opt_insert_arg(&args, 3, "--test") != 0)
if (fuse_opt_insert_arg(&args, 4, "-o foo") != 0)
if (fuse_opt_insert_arg(&args, 1, NULL) != -1)
if (fuse_opt_insert_arg(&args, -1, "foo") != -1)
if (fuse_opt_insert_arg(&args, 42, "foo") != -1)