MCPcopy Create free account
hub / github.com/WebAssembly/wasm-c-api / encode_u32

Function encode_u32

src/wasm-bin.cc:40–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38}
39
40void encode_u32(char*& ptr, uint32_t n) {
41 encode_u64(ptr, n);
42}
43
44void encode_size32(char*& ptr, size_t n) {
45 assert(n <= 0xffffffff);

Callers

nothing calls this directly

Calls 1

encode_u64Function · 0.85

Tested by

no test coverage detected