gnunet-fuse

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

utimens.c (396B)


      1 /*
      2  * utimens.c - FUSE utimens function
      3  *
      4  *  Created on: Mar 14, 2012
      5  *      Author: mg
      6  *
      7  *
      8  * Change the access and modification times of a file with
      9  * nanosecond resolution
     10  *
     11  * Introduced in version 2.6
     12  */
     13 
     14 #include <sys/time.h>
     15 #include <string.h>
     16 #include <errno.h>
     17 #include <fuse.h>
     18 
     19 
     20 
     21 int
     22 gn_utimens (const char *path, const struct timespec ts[2])
     23 {
     24   int ret = 0;
     25   return ret;
     26 }