| 63 | } |
| 64 | |
| 65 | int ReadVarInt64(IInputStream* input, i64* value) { |
| 66 | ui64 varInt; |
| 67 | int bytesRead = ReadVarUInt64(input, &varInt); |
| 68 | *value = ZigZagDecode64(varInt); |
| 69 | return bytesRead; |
| 70 | } |
| 71 | |
| 72 | } // namespace NYson |
nothing calls this directly
no test coverage detected