| 290 | } |
| 291 | |
| 292 | static bool TimeZoneEq(const char* zone0, const char* zone1) { |
| 293 | if (strcmp(zone0, "GMT") == 0) { |
| 294 | zone0 = "UTC"; |
| 295 | } |
| 296 | if (strcmp(zone1, "GMT") == 0) { |
| 297 | zone1 = "UTC"; |
| 298 | } |
| 299 | return strcmp(zone0, zone1) == 0; |
| 300 | } |
| 301 | |
| 302 | static bool CompareTMFull(const tm* t0, const tm* t1) { |
| 303 | return t0 && t1 && |
no test coverage detected