diff --git a/sources/main.c b/sources/main.c new file mode 100644 index 0000000..be7d438 --- /dev/null +++ b/sources/main.c @@ -0,0 +1,37 @@ +#include +#define FUSE_USE_VERSION 31 + +#include "sourcefs.h" +#include + +const char *mountpoint; + +/* + * #In this function we need to: + * + * * Open the folder we are mounting over (and remember it). + * * Initialize the process table. + */ +static void *icfs_init(struct fuse_conn_info *conn, struct fuse_config *cfg) { + (void)conn; /* Explicit way to tell we ignore these arguments. */ + (void)cfg; /* This also silences the compiler warnings. */ + + return NULL; +} + +static const struct fuse_operations icfs_oper = { + .init = icfs_init, +}; + +int main(int argc, char *argv[]) { + + int ret; + + // FUSE won't tell us the mountpoint on it's own, so we need to extract it + // ourselves. + mountpoint = realpath(argv[argc - 2], NULL); + + ret = fuse_main(argc, argv, &icfs_oper, NULL); + + return ret; +} diff --git a/sources/main.cpp b/sources/main.cpp deleted file mode 100644 index 8bab059..0000000 --- a/sources/main.cpp +++ /dev/null @@ -1,23 +0,0 @@ - -#define FUSE_USE_VERSION 31 - -#include - -static void *hello_init(struct fuse_conn_info *conn, struct fuse_config *cfg) { - (void)conn; - cfg->kernel_cache = 1; - return NULL; -} - -static const struct fuse_operations hello_oper = { - .init = hello_init, -}; - -int main(int argc, char *argv[]) { - - int ret; - - ret = fuse_main(argc, argv, &hello_oper, NULL); - - return ret; -}