| 104 | } |
| 105 | |
| 106 | void |
| 107 | write_ui32(string_buffer& buf, uint32_t v) |
| 108 | { |
| 109 | char *wp = buf.make_space(12); |
| 110 | int len = snprintf(wp, 12, "%u", v); |
| 111 | if (len > 0) { |
| 112 | buf.space_wrote(len); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | void |
| 117 | write_ui64(string_buffer& buf, uint64_t v) |
no test coverage detected