| 396 | } |
| 397 | |
| 398 | inline int64_t StringToInt(const char *s, int base = 10) { |
| 399 | int64_t val; |
| 400 | return StringToIntegerImpl(&val, s, base) ? val : 0; |
| 401 | } |
| 402 | |
| 403 | inline uint64_t StringToUInt(const char *s, int base = 10) { |
| 404 | uint64_t val; |
no test coverage detected