| 278 | } |
| 279 | |
| 280 | inline static bool AtofAndCheck(const char* p, double* out) { |
| 281 | const char* after = Atof(p, out); |
| 282 | if (*after != '\0') { |
| 283 | return false; |
| 284 | } |
| 285 | return true; |
| 286 | } |
| 287 | |
| 288 | inline static unsigned CountDecimalDigit32(uint32_t n) { |
| 289 | #if defined(_MSC_VER) || defined(__GNUC__) |