| 76 | string StringifyBool(const bool value) { return value ? "yes" : "no"; } |
| 77 | |
| 78 | string StringifyInt(const int64_t value) { |
| 79 | char buffer[48]; |
| 80 | snprintf(buffer, sizeof(buffer), "%" PRId64, value); |
| 81 | return string(buffer); |
| 82 | } |
| 83 | |
| 84 | std::string StringifyUint(const uint64_t value) { |
| 85 | char buffer[48]; |
no outgoing calls
no test coverage detected