fuse: implementation checkpoint

This commit is contained in:
Bill Zissimopoulos
2016-05-25 16:35:07 -07:00
parent 91825106f1
commit 1f22bd3517
5 changed files with 210 additions and 3 deletions

View File

@ -21,34 +21,41 @@
FSP_FUSE_API int fsp_fuse_opt_parse(struct fuse_args *args, void *data,
const struct fuse_opt opts[], fuse_opt_proc_t proc)
{
// !!!: NEEDIMPL
return 0;
}
FSP_FUSE_API int fsp_fuse_opt_add_opt(char **opts, const char *opt)
{
// !!!: NEEDIMPL
return 0;
}
FSP_FUSE_API int fsp_fuse_opt_add_opt_escaped(char **opts, const char *opt)
{
// !!!: NEEDIMPL
return 0;
}
FSP_FUSE_API int fsp_fuse_opt_add_arg(struct fuse_args *args, const char *arg)
{
// !!!: NEEDIMPL
return 0;
}
FSP_FUSE_API int fsp_fuse_opt_insert_arg(struct fuse_args *args, int pos, const char *arg)
{
// !!!: NEEDIMPL
return 0;
}
FSP_FUSE_API void fsp_fuse_opt_free_args(struct fuse_args *args)
{
// !!!: NEEDIMPL
}
FSP_FUSE_API int fsp_fuse_opt_match(const struct fuse_opt opts[], const char *opt)
{
// !!!: NEEDIMPL
return 0;
}