MCPcopy Create free account
hub / github.com/nodejs/undici / llhttp_alloc

Function llhttp_alloc

deps/llhttp/src/api.c:71–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69
70
71llhttp_t* llhttp_alloc(llhttp_type_t type) {
72 llhttp_t* parser = malloc(sizeof(llhttp_t));
73 llhttp_init(parser, type, &wasm_settings);
74 return parser;
75}
76
77void llhttp_free(llhttp_t* parser) {
78 free(parser);

Callers

nothing calls this directly

Calls 1

llhttp_initFunction · 0.85

Tested by

no test coverage detected