diff options
Diffstat (limited to 'example/fusexmp.c')
-rwxr-xr-x[-rw-r--r--] | example/fusexmp.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/example/fusexmp.c b/example/fusexmp.c index 42a8134..73e9898 100644..100755 --- a/example/fusexmp.c +++ b/example/fusexmp.c @@ -5,10 +5,22 @@ 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 */ +/** @file + * @tableofcontents + * + * fusexmp.c - FUSE: Filesystem in Userspace + * + * \section section_compile compiling this example + * + * gcc -Wall fusexmp.c `pkg-config fuse --cflags --libs` -o fusexmp + * + * \section section_source the complete source + * \include fusexmp.c + */ + + #define FUSE_USE_VERSION 30 #ifdef HAVE_CONFIG_H |