Files
ICFS/src/fuse_operations.h
2025-03-10 18:09:05 +01:00

19 lines
350 B
C

/*
ICFS: Interactively Controlled File System
Copyright (C) 2024-2025 Fedir Kovalov
This program can be distributed under the terms of the GNU GPLv2.
See the file LICENSE.
*/
#ifndef FUSE_OPERATIONS
#define FUSE_OPERATIONS
#define FUSE_USE_VERSION 31
#include <fuse3/fuse.h>
const struct fuse_operations *get_fuse_operations();
#endif