aboutsummaryrefslogtreecommitdiff
path: root/example/fsel.c
diff options
context:
space:
mode:
Diffstat (limited to 'example/fsel.c')
-rwxr-xr-x[-rw-r--r--]example/fsel.c19
1 files changed, 17 insertions, 2 deletions
diff --git a/example/fsel.c b/example/fsel.c
index 9cf0221..69202ee 100644..100755
--- a/example/fsel.c
+++ b/example/fsel.c
@@ -6,10 +6,25 @@
This program can be distributed under the terms of the GNU GPL.
See the file COPYING.
- gcc -Wall fsel.c `pkg-config fuse --cflags --libs` -o fsel
*/
-#define FUSE_USE_VERSION 29
+/** @file
+ * @tableofcontents
+ *
+ * fsel.c - FUSE fsel: FUSE select example
+ *
+ * \section section_compile compiling this example
+ *
+ * gcc -Wall fsel.c `pkg-config fuse3 --cflags --libs` -o fsel
+ *
+ * \section section_source the complete source
+ * \include fsel.c
+ */
+
+
+#define FUSE_USE_VERSION 30
+
+#include <config.h>
#include <fuse.h>
#include <unistd.h>