| 702 | } |
| 703 | |
| 704 | void UtilInterface::decodeTimeTzEx(Firebird::CheckStatusWrapper* status, const ISC_TIME_TZ_EX* timeEx, |
| 705 | unsigned* hours, unsigned* minutes, unsigned* seconds, unsigned* fractions, |
| 706 | unsigned timeZoneBufferLength, char* timeZoneBuffer) |
| 707 | { |
| 708 | decodeTimeTzWithFallback(status, reinterpret_cast<const ISC_TIME_TZ*>(timeEx), |
| 709 | timeZoneBuffer ? timeEx->ext_offset : TimeZoneUtil::NO_OFFSET, |
| 710 | hours, minutes, seconds, fractions, timeZoneBufferLength, timeZoneBuffer); |
| 711 | } |
| 712 | |
| 713 | void UtilInterface::encodeTimeTz(CheckStatusWrapper* status, ISC_TIME_TZ* timeTz, |
| 714 | unsigned hours, unsigned minutes, unsigned seconds, unsigned fractions, const char* timeZone) |
nothing calls this directly
no test coverage detected