Home | History | Annotate | Download | only in include

Lines Matching defs:tm

45 struct tm {
62 * struct tm, the value should be the field name
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);