| 95 | } |
| 96 | |
| 97 | static bool is_word_char(char c) { |
| 98 | return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || c == '-' || is_digit_char(c); |
| 99 | } |
| 100 | |
| 101 | static std::pair<uint32_t, const char *> parse_hex(const char * src, int size) { |
| 102 | const char * pos = src; |
no test coverage detected