gopherfs

A FUSE gopher file system.
git clone git://r-36.net/gopherfs
Log | Files | Refs | README | LICENSE

ind.h (249B)


      1 /*
      2  * Copy me if you can.
      3  * by 20h
      4  */
      5 
      6 #ifndef IND_H
      7 #define IND_H
      8 
      9 #define nil NULL
     10 
     11 #define FCACHE 86400
     12 #define ECACHE 300
     13 
     14 #define GOPHERPATH "/.gopherfs/cache/"
     15 
     16 void *greallocz(void *p, int l, int z);
     17 void *gmemdup(void *p, int l);
     18 
     19 #endif
     20