| 92 | } |
| 93 | |
| 94 | std::string |
| 95 | to_stdstring(uint32_t v) |
| 96 | { |
| 97 | char buf[64]; |
| 98 | snprintf(buf, sizeof(buf), "%lu", static_cast<unsigned long>(v)); |
| 99 | return std::string(buf); |
| 100 | } |
| 101 | |
| 102 | int |
| 103 | errno_string(const char *s, int en, std::string& err_r) |
no outgoing calls
no test coverage detected