MCPcopy Create free account
hub / github.com/NoMercy-ac/NoMercy / IntegerToByteArray

Function IntegerToByteArray

Source/Client/NM_Engine/SocketUtils.h:61–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59}
60
61static uint8_t* IntegerToByteArray(uint32_t nData)
62{
63 uint8_t out[4] = { (nData >> 0) & 0xFF, (nData >> 8) & 0xFF, (nData >> 16) & 0xFF, (nData >> 24) & 0xFF };
64 return out;
65}
66

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected