Gets the displacement from a offset-based time zone id.
| 1162 | |
| 1163 | // Gets the displacement from a offset-based time zone id. |
| 1164 | static inline SSHORT offsetZoneToDisplacement(USHORT timeZone) |
| 1165 | { |
| 1166 | fb_assert(isOffset(timeZone)); |
| 1167 | |
| 1168 | return (SSHORT) (int(timeZone) - ONE_DAY); |
| 1169 | } |
| 1170 | |
| 1171 | static inline USHORT displacementToOffsetZone(SSHORT displacement) |
| 1172 | { |
no test coverage detected