| 184 | return daysSinceEpoch >= std::numeric_limits<int32_t>::min() && |
| 185 | daysSinceEpoch <= std::numeric_limits<int32_t>::max(); |
| 186 | } |
| 187 | |
| 188 | inline void skipSpaces(const char* buf, size_t len, size_t& pos) { |
| 189 | while (pos < len && characterIsSpace(buf[pos])) { |
| 190 | pos++; |
| 191 | } |
| 192 | } |
| 193 |
no test coverage detected