MCPcopy Create free account
hub / github.com/beefytech/Beef / ReadInt16

Method ReadInt16

BeefySysLib/DataStream.cpp:24–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22}
23
24int16 DataStream::ReadInt16()
25{
26 int16 anInt16;
27 Read(&anInt16, sizeof(int16));
28 if (mBigEndian)
29 return FromBigEndian(anInt16);
30 return anInt16;
31}
32
33uint16 DataStream::ReadUInt16()
34{

Callers 4

ReadExtraInfoMethod · 0.80
InitMethod · 0.80
ReadImageDataMethod · 0.80
ReadDataMethod · 0.80

Calls 2

ReadFunction · 0.85
FromBigEndianFunction · 0.85

Tested by

no test coverage detected