MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / PNG_read32bitInt

Function PNG_read32bitInt

Protocols/AppleImageCodec/picopng.c:750–753  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

748}
749
750UINT32 PNG_read32bitInt(const UINT8 *buffer)
751{
752 return (buffer[0] << 24) | (buffer[1] << 16) | (buffer[2] << 8) | buffer[3];
753}
754
755UINT32 PNG_read32bitLE(const UINT8 *buffer)
756{

Callers 2

PNG_readPngHeaderFunction · 0.85
PNG_decodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected