httpdirfs/fuse_local.h
2019-04-24 04:20:52 +01:00

12 lines
213 B
C

#ifndef FUSE_LOCAL_H
#define FUSE_LOCAL_H
/* must be included before including <fuse.h> */
#define FUSE_USE_VERSION 26
#include <fuse.h>
/* Initialise fuse */
int fuse_local_init(int argc, char **argv);
#endif