| 694 | } |
| 695 | |
| 696 | void UtilInterface::decodeTimeTz(CheckStatusWrapper* status, const ISC_TIME_TZ* timeTz, |
| 697 | unsigned* hours, unsigned* minutes, unsigned* seconds, unsigned* fractions, |
| 698 | unsigned timeZoneBufferLength, char* timeZoneBuffer) |
| 699 | { |
| 700 | decodeTimeTzWithFallback(status, timeTz, TimeZoneUtil::NO_OFFSET, |
| 701 | hours, minutes, seconds, fractions, timeZoneBufferLength, timeZoneBuffer); |
| 702 | } |
| 703 | |
| 704 | void UtilInterface::decodeTimeTzEx(Firebird::CheckStatusWrapper* status, const ISC_TIME_TZ_EX* timeEx, |
| 705 | unsigned* hours, unsigned* minutes, unsigned* seconds, unsigned* fractions, |
nothing calls this directly
no test coverage detected