Lines Matching refs:tm
46 struct tm { struct
65 extern char* asctime(const struct tm*) __LIBC_ABI_PUBLIC__;
66 extern char* asctime_r(const struct tm*, char*) __LIBC_ABI_PUBLIC__;
69 extern time_t mktime(struct tm*) __LIBC_ABI_PUBLIC__;
71 extern struct tm* localtime(const time_t*) __LIBC_ABI_PUBLIC__;
72 extern struct tm* localtime_r(const time_t*, struct tm*) __LIBC_ABI_PUBLIC__;
74 extern struct tm* gmtime(const time_t*) __LIBC_ABI_PUBLIC__;
75 extern struct tm* gmtime_r(const time_t*, struct tm*) __LIBC_ABI_PUBLIC__;
77 extern char* strptime(const char*, const char*, struct tm*) __LIBC_ABI_PUBLIC__;
78 extern size_t strftime(char*, size_t, const char*, const struct tm*) __LIBC_ABI_PUBLIC__;
79 extern size_t strftime_l(char *, size_t, const char *, const struct tm *, locale_t) __LIBC_ABI_PUBL…
100 extern time_t timelocal(struct tm*) __LIBC_ABI_PUBLIC__;
101 extern time_t timegm(struct tm*) __LIBC_ABI_PUBLIC__;