gnunet-fuse

GNUnet file-sharing directory mounting via FUSE
Log | Files | Refs | Submodules | README | LICENSE

rename.c (304B)


      1 /*
      2  * rename.c - FUSE rename function
      3  *
      4  *  Created on: Mar 14, 2012
      5  *      Author: mg
      6  *
      7  * Rename a file
      8  *
      9  **/
     10 
     11 #include <string.h>
     12 #include <errno.h>
     13 #include <sys/types.h>
     14 #include <sys/stat.h>
     15 #include <fuse.h>
     16 
     17 
     18 int
     19 gn_rename (const char *from, const char *to)
     20 {
     21   int ret = 0;
     22   return ret;
     23 }