Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
27
static inline unsigned read_uint32_le (const unsigned char *p)
28
{
29
return ((unsigned) p[0]) + (((unsigned) p[1]) << 8)
30
+ (((unsigned) p[2]) << 16) + (((unsigned) p[3]) << 24);
31
}
32
33
/// MIDI sequence.
34
struct seq {
Callers
1
gmext_read_stream
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected