MCPcopy Create free account
hub / github.com/ZDoom/Raze / ReadLong

Function ReadLong

source/core/d_protocol.cpp:73–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73int ReadLong (uint8_t **stream)
74{
75 int v = (((*stream)[0]) << 24) | (((*stream)[1]) << 16) | (((*stream)[2]) << 8) | (((*stream)[3]));
76 *stream += 4;
77 return v;
78}
79
80float ReadFloat (uint8_t **stream)
81{

Callers 5

ReadFloatFunction · 0.85
UnpackUserCmdFunction · 0.85
SkipChunkFunction · 0.85
GetPacketsFunction · 0.85
DoArbitrateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected