Files
tcfs/tcfs.c
2010-11-05 21:18:22 +01:00

21 lines
341 B
C

#include "config.h"
#include <stdlib.h>
#include <fuse.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
static struct fuse_operations tcfs_oper = {
.getattr = NULL,
.readdir = NULL,
.open = NULL,
.read = NULL
};
int main(int argc, char *argv[])
{
return fuse_main(argc, argv, &tcfs_oper, NULL);
}