16 lines
272 B
C
Raw Normal View History

2026-01-06 14:23:31 +01:00
/* retoor <retoor@molodetz.nl> */
#ifndef FUSEDAV_OPERATIONS_H
#define FUSEDAV_OPERATIONS_H
#define FUSE_USE_VERSION 31
#include <fuse3/fuse.h>
#include "webdav.h"
extern struct fuse_operations fusedav_operations;
void operations_init(webdav_context_t *ctx);
#endif