pub unsafe extern "C" fn tzfree(tz: TimezoneT)Expand description
Free allocated time zone.
Rust interface for the C function:
void tzfree(timezone_t);The tzfree function frees a timezone object tz, which should have been successfully allocated by
tzalloc. This invalidates any tm_zone pointers that tz was used to set.