diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-08-25 15:19:06 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-08-25 15:19:06 +0000 |
commit | ecce1bf2ff73eb37048a784df0fa97ad041c6bdd (patch) | |
tree | 21d192874d6e9ad229f3fbd74abd9e6cb0abe61b /include/fuse.h | |
parent | b0c52c59f710b4619949adfc359dabfca005fe0d (diff) | |
download | libfuse-ecce1bf2ff73eb37048a784df0fa97ad041c6bdd.tar.gz |
fix
Diffstat (limited to 'include/fuse.h')
-rw-r--r-- | include/fuse.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/fuse.h b/include/fuse.h index 6251158..39982dc 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -313,6 +313,8 @@ struct fuse_operations { int (*access) (const char *, int); int (*create) (const char *, mode_t, struct fuse_file_info *); + + int (*ftruncate) (const char *, off_t, struct fuse_file_info *); }; /** Extra context that may be needed by some filesystems |