diff options
Diffstat (limited to 'example/fsel.c')
-rwxr-xr-x[-rw-r--r--] | example/fsel.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/example/fsel.c b/example/fsel.c index bddc1aa..3c52033 100644..100755 --- a/example/fsel.c +++ b/example/fsel.c @@ -6,9 +6,22 @@ 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 */ +/** @file + * @tableofcontents + * + * fsel.c - FUSE fsel: FUSE select example + * + * \section section_compile compiling this example + * + * gcc -Wall fsel.c `pkg-config fuse --cflags --libs` -o fsel + * + * \section section_source the complete source + * \include fsel.c + */ + + #define FUSE_USE_VERSION 30 #include <fuse.h> |