// Warning: sets the timezone for all threads void TzSet(LPCSTR szTz) { char buf[1024]; _snprintf(buf, sizeof(buf), "TZ=%s", szTz); _putenv(buf); _tzset(); }
void ExampleUse() { TzSet("EST5EDT"); }
// Warning: sets the timezone for all threads void TzSet(LPCSTR szTz) { char buf[1024]; _snprintf(buf, sizeof(buf), "TZ=%s", szTz); _putenv(buf); _tzset(); }
void ExampleUse() { TzSet("EST5EDT"); }