MCPcopy Create free account
hub / github.com/NetHack/NetHack / read_u32

Function read_u32

sys/msdos/font.c:213–220  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211}
212
213static uint32
214read_u32(const unsigned char *buf)
215{
216 return ((uint32) buf[0] << 0)
217 | ((uint32) buf[1] << 8)
218 | ((uint32) buf[2] << 16)
219 | ((uint32) buf[3] << 24);
220}
221
222static uint32 *
223uni_8to32(const char *inp)

Callers 1

load_fontFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected