| 401 | } |
| 402 | |
| 403 | inline uint64_t StringToUInt(const char *s, int base = 10) { |
| 404 | uint64_t val; |
| 405 | return StringToIntegerImpl(&val, s, base) ? val : 0; |
| 406 | } |
| 407 | |
| 408 | typedef bool (*LoadFileFunction)(const char *filename, bool binary, |
| 409 | std::string *dest); |
no test coverage detected