Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
40
void encode_u32(char*& ptr, uint32_t n) {
41
encode_u64(ptr, n);
42
}
43
44
void encode_size32(char*& ptr, size_t n) {
45
assert(n <= 0xffffffff);
Callers
nothing calls this directly
Calls
1
encode_u64
Function · 0.85
Tested by
no test coverage detected