MCPcopy Create free account
hub / github.com/Tencent/libpag / readInt8

Method readInt8

src/codec/utils/DecodeStream.cpp:44–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42}
43
44int8_t DecodeStream::readInt8() {
45 if (!checkEndOfFile(1)) {
46 auto value = dataView.getInt8(_position);
47 positionChanged(1);
48 return value;
49 }
50 return 0;
51}
52
53uint8_t DecodeStream::readUint8() {
54 if (!checkEndOfFile(1)) {

Callers 1

ReadBodyBytesFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected