aboutsummaryrefslogtreecommitdiffstats
path: root/lib/fuse_i.h
diff options
context:
space:
mode:
authorBernd Schubert <bschubert@ddn.com>2024-12-17 20:21:09 +0100
committerBernd Schubert <bernd.schubert@fastmail.fm>2024-12-18 09:28:18 +0100
commitc9b9ca09e0e5e4fc3c648eda795f45122a1c323b (patch)
tree63f6686a450d5402f1f162cab4c63948b99d212a /lib/fuse_i.h
parent752b59ac087658adb50d50a492d228d53081d195 (diff)
downloadlibfuse-c9b9ca09e0e5e4fc3c648eda795f45122a1c323b.tar.gz
Rename _int to _internal
_int can be confused with 'integer'
Diffstat (limited to 'lib/fuse_i.h')
-rw-r--r--lib/fuse_i.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/fuse_i.h b/lib/fuse_i.h
index 6713ab8..ea04c34 100644
--- a/lib/fuse_i.h
+++ b/lib/fuse_i.h
@@ -190,10 +190,12 @@ int fuse_start_thread(pthread_t *thread_id, void *(*func)(void *), void *arg);
void fuse_buf_free(struct fuse_buf *buf);
-int fuse_session_receive_buf_int(struct fuse_session *se, struct fuse_buf *buf,
- struct fuse_chan *ch);
-void fuse_session_process_buf_int(struct fuse_session *se,
- const struct fuse_buf *buf, struct fuse_chan *ch);
+int fuse_session_receive_buf_internal(struct fuse_session *se,
+ struct fuse_buf *buf,
+ struct fuse_chan *ch);
+void fuse_session_process_buf_internal(struct fuse_session *se,
+ const struct fuse_buf *buf,
+ struct fuse_chan *ch);
struct fuse *fuse_new_31(struct fuse_args *args, const struct fuse_operations *op,
size_t op_size, void *private_data);