| 128 | } |
| 129 | |
| 130 | static void end_headers(struct strbuf *hdr) |
| 131 | { |
| 132 | strbuf_add(hdr, "\r\n", 2); |
| 133 | write_or_die(1, hdr->buf, hdr->len); |
| 134 | strbuf_release(hdr); |
| 135 | } |
| 136 | |
| 137 | __attribute__((format (printf, 2, 3))) |
| 138 | static NORETURN void not_found(struct strbuf *hdr, const char *err, ...) |
no test coverage detected