MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / zip_read_u16le

Function zip_read_u16le

src/cli/cli.c:2507–2509  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2505static const size_t ZIP_MAX_UNCOMP = 500U * 1024U * 1024U;
2506
2507static uint16_t zip_read_u16le(const unsigned char *p) {
2508 return (uint16_t)((uint16_t)p[0] | ((uint16_t)p[1] << BYTE_SHIFT));
2509}
2510
2511static uint32_t zip_read_u32le(const unsigned char *p) {
2512 return ((uint32_t)p[0]) | ((uint32_t)p[1] << BYTE_SHIFT) |

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected