Separated main and operations for testing

This commit is contained in:
2025-02-10 11:16:42 +01:00
parent 93588036aa
commit 5f5b7ffda6
4 changed files with 728 additions and 674 deletions

10
src/fuse_operations.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef FUSE_OPERATIONS
#define FUSE_OPERATIONS
#define FUSE_USE_VERSION 31
#include <fuse3/fuse.h>
const struct fuse_operations *get_fuse_operations();
#endif