summaryrefslogtreecommitdiffstats
path: root/library/cpp/yson/varint.h
blob: af46e23f536c2963230c345630df09520ec2362c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once 
 
#include <util/stream/input.h> 
#include <util/stream/output.h> 
#include <util/system/defaults.h> 
 
namespace NYson {
    ////////////////////////////////////////////////////////////////////////////////
 
    // Various functions that read/write varints from/to a stream.
 
    // Returns the number of bytes written.
    int WriteVarUInt64(IOutputStream* output, ui64 value);
    int WriteVarInt32(IOutputStream* output, i32 value);
    int WriteVarInt64(IOutputStream* output, i64 value);
 
    // Returns the number of bytes read.
    int ReadVarUInt64(IInputStream* input, ui64* value);
    int ReadVarInt32(IInputStream* input, i32* value);
    int ReadVarInt64(IInputStream* input, i64* value);
 
    ////////////////////////////////////////////////////////////////////////////////
 
} // namespace NYson