| 97 | } |
| 98 | |
| 99 | static void hdr_str(struct strbuf *hdr, const char *name, const char *value) |
| 100 | { |
| 101 | strbuf_addf(hdr, "%s: %s\r\n", name, value); |
| 102 | } |
| 103 | |
| 104 | static void hdr_int(struct strbuf *hdr, const char *name, uintmax_t value) |
| 105 | { |
no test coverage detected