libshit

Just some random shit
git clone https://git.neptards.moe/neptards/libshit.git
Log | Files | Refs | Submodules | README | LICENSE

utime.h (179B)


      1 #pragma once
      2 
      3 #include <sys/time.h>
      4 
      5 struct utimbuf
      6 {
      7   time_t actime;
      8   time_t modtime;
      9 };
     10 
     11 int utime(const char* fname, const struct utimbuf* times)
     12   __attribute__((nothrow));