| 27 | #include "cachekey.h" |
| 28 | |
| 29 | static void |
| 30 | append(String &target, unsigned n) |
| 31 | { |
| 32 | char buf[sizeof("4294967295")]; |
| 33 | snprintf(buf, sizeof(buf), "%u", n); |
| 34 | target.append(buf); |
| 35 | } |
| 36 | |
| 37 | static void |
| 38 | appendEncoded(String &target, const char *s, size_t len) |
no test coverage detected