| 69 | |
| 70 | |
| 71 | llhttp_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 | |
| 77 | void llhttp_free(llhttp_t* parser) { |
| 78 | free(parser); |
nothing calls this directly
no test coverage detected