FUSE: Difference between revisions

[unchecked revision][unchecked revision]
Content deleted Content added
m Bot: Replace deprecated source tag with syntaxhighlight
m Bot: Replace deprecated source tag with syntaxhighlight
 
Line 12:
 
In it's simplest form, a FUSE driver looks like this:
<sourcesyntaxhighlight lang="c">
#define FUSE_USE_VERSION 29
#include <fuse.h>
Line 38:
return fuse_main(argc, argv, &myfs_ops, NULL);
}
</syntaxhighlight>
</source>
Let's examine this source line by line.