runit

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

fmt_ptime.h (299B)


      1 #ifndef FMT_PTIME_H
      2 #define FMT_PTIME_H
      3 
      4 #define FMT_PTIME 30
      5 
      6 #include <time.h>
      7 #include <sys/time.h>
      8 #include "taia.h"
      9 
     10 extern unsigned int fmt_ptime(char *, struct taia *);
     11 extern unsigned int fmt_ptime_iso8601(char *, struct taia *);
     12 extern unsigned int fmt_taia(char *, struct taia *);
     13 
     14 #endif