()
| 218 | #[cfg(target_env = "msvc")] |
| 219 | #[cfg(not(target_arch = "wasm32"))] |
| 220 | pub(super) fn get_tz_info() -> TIME_ZONE_INFORMATION { |
| 221 | let mut info: TIME_ZONE_INFORMATION = unsafe { core::mem::zeroed() }; |
| 222 | unsafe { GetTimeZoneInformation(&mut info) }; |
| 223 | info |
| 224 | } |
| 225 | |
| 226 | // #[pyfunction] |
| 227 | // fn tzset() { |
no outgoing calls
no test coverage detected