Clarified purpose of helper.c, moved *version() to fuse.c
authorNikolaus Rath <Nikolaus@rath.org>
Wed, 5 Oct 2016 02:34:19 +0000 (19:34 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 5 Oct 2016 02:34:19 +0000 (19:34 -0700)
lib/fuse.c
lib/helper.c

index 8bc6b0a203412ff1c472cfd4980628967a4fe95f..3304d6817ae4cd0caafc7422a8ef73100ef9bd81 100644 (file)
@@ -4856,3 +4856,13 @@ int fuse_mount(struct fuse *f, const char *mountpoint) {
 void fuse_unmount(struct fuse *f) {
        return fuse_session_unmount(fuse_get_session(f));
 }
+
+int fuse_version(void)
+{
+       return FUSE_VERSION;
+}
+
+const char *fuse_pkgversion(void)
+{
+       return PACKAGE_VERSION;
+}
index 63f26c24f5e9599100f21460824c27a96163bf95..140de008326ef2d22a8f7f79118ccdf271f474fa 100644 (file)
@@ -2,6 +2,10 @@
   FUSE: Filesystem in Userspace
   Copyright (C) 2001-2007  Miklos Szeredi <miklos@szeredi.hu>
 
+  Helper functions to create (simple) standalone programs. With the
+  aid of these functions it should be possible to create full FUSE
+  file system by implementing nothing but the request handlers.
+
   This program can be distributed under the terms of the GNU LGPLv2.
   See the file COPYING.LIB.
 */
@@ -295,13 +299,3 @@ out1:
        fuse_opt_free_args(&args);
        return res;
 }
-
-int fuse_version(void)
-{
-       return FUSE_VERSION;
-}
-
-const char *fuse_pkgversion(void)
-{
-       return PACKAGE_VERSION;
-}