MCPcopy Create free account
hub / github.com/OpenXcom/OpenXcom / read_uint32_le

Function read_uint32_le

src/Engine/GMCat.cpp:27–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25{
26
27static inline unsigned read_uint32_le (const unsigned char *p)
28{
29return ((unsigned) p[0]) + (((unsigned) p[1]) << 8)
30 + (((unsigned) p[2]) << 16) + (((unsigned) p[3]) << 24);
31}
32
33/// MIDI sequence.
34struct seq {

Callers 1

gmext_read_streamFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected