MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / read_3bytes

Function read_3bytes

parser/parse_sst.c:43–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41 + (*(val + 2) << 16) + (*(val + 3) << 24));
42}
43static inline unsigned read_3bytes( char *val ) {
44 return (*(val + 0) + (*(val + 1) << 8) + (*(val + 2) << 16));
45}
46
47/* compile-time constants if called with constants */
48#define MAKE_4BYTES( a, b, c, d ) \

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected