MCPcopy Create free account
hub / github.com/cuberite/cuberite / GetBEInt

Function GetBEInt

src/StringUtils.cpp:840–844  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

838
839
840int GetBEInt(const char * a_Mem)
841{
842 const Byte * Bytes = (const Byte *)a_Mem;
843 return (Bytes[0] << 24) | (Bytes[1] << 16) | (Bytes[2] << 8) | Bytes[3];
844}
845
846
847

Callers 6

GetIntMethod · 0.85
GetFloatMethod · 0.85
ReadListMethod · 0.85
ReadTagMethod · 0.85
ParseFromNBTMethod · 0.85
LoadBiomeMapFromNBTMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected