Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
840
int 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
GetInt
Method · 0.85
GetFloat
Method · 0.85
ReadList
Method · 0.85
ReadTag
Method · 0.85
ParseFromNBT
Method · 0.85
LoadBiomeMapFromNBT
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected