21 lines
341 B
C
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);
|
|
}
|