Decode a time-zone offset if it is within the valid range.
Declared in <balber_berutil.h>
static
int
getTimezoneOffsetInMinutesIfValid(
int* value,
std::streambuf* streamBuf);
If the offset is greater than or equal to k_MIN_OFFSET and less than or equal to k_MAX_OFFSET then load the value of the offset to the specified value and return zero, otherwise do not modify the value addressed by value and return non-zero.
0 on success, and a non-zero value otherwise
| Name | Description |
|---|---|
| value | destination for the decoded value |
| streamBuf | input stream buffer |