MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / blong

Function blong

Source/Amiga/dernc.cpp:299–306  ·  view source on GitHub ↗

* Return the big-endian longword at p. */

Source from the content-addressed store, hash-verified

297 * Return the big-endian longword at p.
298 */
299static unsigned long blong (unsigned char *p) {
300 unsigned long n;
301 n = p[0];
302 n = (n << 8) + p[1];
303 n = (n << 8) + p[2];
304 n = (n << 8) + p[3];
305 return n;
306}
307
308/*
309 * Return the big-endian word at p.

Callers 2

rnc_ulenFunction · 0.85
rnc_unpackFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected