Return true if SP's time type I does not specify local time. */
| 647 | |
| 648 | /* Return true if SP's time type I does not specify local time. */ |
| 649 | static bool |
| 650 | ttunspecified(struct state const *sp, int i) |
| 651 | { |
| 652 | char const *abbr = &sp->chars[sp->ttis[i].tt_desigidx]; |
| 653 | /* memcmp is likely faster than strcmp, and is safe due to CHARS_EXTRA. */ |
| 654 | return memcmp(abbr, UNSPEC, sizeof UNSPEC) == 0; |
| 655 | } |
| 656 | |
| 657 | static int_fast32_2s |
| 658 | detzcode(const char *const codep) |
no outgoing calls
no test coverage detected