aboutsummaryrefslogtreecommitdiff
path: root/example/fusexmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'example/fusexmp.c')
-rwxr-xr-x[-rw-r--r--]example/fusexmp.c18
1 files changed, 15 insertions, 3 deletions
diff --git a/example/fusexmp.c b/example/fusexmp.c
index dca8a46..6f63ae9 100644..100755
--- a/example/fusexmp.c
+++ b/example/fusexmp.c
@@ -5,11 +5,23 @@
This program can be distributed under the terms of the GNU GPL.
See the file COPYING.
-
- gcc -Wall fusexmp.c `pkg-config fuse --cflags --libs` -o fusexmp
*/
-#define FUSE_USE_VERSION 26
+/** @file
+ * @tableofcontents
+ *
+ * fusexmp.c - FUSE: Filesystem in Userspace
+ *
+ * \section section_compile compiling this example
+ *
+ * gcc -Wall fusexmp.c `pkg-config fuse3 --cflags --libs` -o fusexmp
+ *
+ * \section section_source the complete source
+ * \include fusexmp.c
+ */
+
+
+#define FUSE_USE_VERSION 30
#ifdef HAVE_CONFIG_H
#include <config.h>