示例#1
0
time64_t timelocal64(struct tm64* tm64) {
#if defined( __OpenBSD__) || defined(__FreeBSD__)
  return timestamp64(timelocal, tm64);
#else
  return timestamp64(mktime, tm64);
#endif
}
示例#2
0
time64_t timelocal64(struct tm64* tm64) {
#ifdef __OpenBSD__
  return timestamp64(timelocal, tm64);
#else
  return timestamp64(mktime, tm64);
#endif
}
示例#3
0
time64_t timegm64(struct tm64* tm64) {
  return timestamp64(timegm, tm64);
}
示例#4
0
time64_t mktime64(struct tm64* tm64) {
  return timestamp64(mktime, tm64);
}