| 233 | } |
| 234 | |
| 235 | int64_t String2Int64(const string &value) { |
| 236 | int64_t result; |
| 237 | sscanf(value.c_str(), "%" PRId64, &result); |
| 238 | return result; |
| 239 | } |
| 240 | |
| 241 | uint64_t String2Uint64(const string &value) { |
| 242 | uint64_t result; |
no test coverage detected