Lines Matching refs:tm
45 struct tm { struct
66 extern char* asctime(const struct tm* a);
67 extern char* asctime_r(const struct tm* a, char* buf);
71 extern time_t mktime (struct tm *a);
73 extern struct tm* localtime(const time_t *t);
74 extern struct tm* localtime_r(const time_t *timep, struct tm *result);
76 extern struct tm* gmtime(const time_t *timep);
77 extern struct tm* gmtime_r(const time_t *timep, struct tm *result);
79 extern char* strptime(const char *buf, const char *fmt, struct tm *tm);
80 extern size_t strftime(char *s, size_t max, const char *format, const struct tm *tm);
114 extern time_t timelocal(struct tm *tm);
115 extern time_t timegm(struct tm* tm);