| 247 | } |
| 248 | |
| 249 | std::string UIntToStr(uint32_t i) { |
| 250 | char buf[16]; |
| 251 | snprintf(buf, sizeof(buf), "%u", i); |
| 252 | return std::string(buf); |
| 253 | } |
| 254 | |
| 255 | std::vector<std::string> SplitStr(const std::string & str, const std::string & delim) { |
| 256 | std::vector<std::string> vec; |