| 102 | } |
| 103 | |
| 104 | static void hdr_int(struct strbuf *hdr, const char *name, uintmax_t value) |
| 105 | { |
| 106 | strbuf_addf(hdr, "%s: %" PRIuMAX "\r\n", name, value); |
| 107 | } |
| 108 | |
| 109 | static void hdr_date(struct strbuf *hdr, const char *name, timestamp_t when) |
| 110 | { |
no test coverage detected