sys.h - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       sys.h (308B)
       ---
            1 struct fprop {
            2         unsigned uid;
            3         unsigned gid;
            4         unsigned long mode;
            5         long size;
            6         time_t time;
            7 };
            8 
            9 extern const char invalidchars[];
           10 
           11 extern time_t totime(long long t);
           12 extern char *canonical(char *path);
           13 extern int getstat(char *fname, struct fprop *prop);
           14 extern int setstat(char *fname, struct fprop *prop);