MCPcopy Create free account
hub / github.com/TheRealMJP/DeferredTexturing / mz_write_le16

Function mz_write_le16

SampleFramework12/v1.00/TinyEXR.cpp:5475–5478  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5473#ifndef MINIZ_NO_ARCHIVE_WRITING_APIS
5474
5475static void mz_write_le16(mz_uint8 *p, mz_uint16 v) {
5476 p[0] = (mz_uint8)v;
5477 p[1] = (mz_uint8)(v >> 8);
5478}
5479static void mz_write_le32(mz_uint8 *p, mz_uint32 v) {
5480 p[0] = (mz_uint8)v;
5481 p[1] = (mz_uint8)(v >> 8);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected