bunkum

an old and silly c99 web server with some fun features
Log | Files | Refs | README

time.h (161B)


      1 #ifndef UTIL_TIME_H
      2 #define UTIL_TIME_H
      3 
      4 #include <time.h>
      5 
      6 char* day_to_str(int day);
      7 char* mon_to_str(int mon);
      8 void time_to_str(time_t t, char* buf);
      9 
     10 #endif