| 498 | |
| 499 | |
| 500 | void llhttp__debug(llhttp_t* s, const char* p, const char* endp, |
| 501 | const char* msg) { |
| 502 | if (p == endp) { |
| 503 | fprintf(stderr, "p=%p type=%d flags=%02x next=null debug=%s\n", s, s->type, |
| 504 | s->flags, msg); |
| 505 | } else { |
| 506 | fprintf(stderr, "p=%p type=%d flags=%02x next=%02x debug=%s\n", s, |
| 507 | s->type, s->flags, *p, msg); |
| 508 | } |
| 509 | } |
nothing calls this directly
no outgoing calls
no test coverage detected