| 28 | } |
| 29 | |
| 30 | static bool is_hex_digit(const char c) { |
| 31 | return (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'); |
| 32 | } |
| 33 | |
| 34 | // Trie for matching multiple literals. |
| 35 | // This is used in common_peg_until_parser and to build a GBNF exclusion grammar |
no outgoing calls
no test coverage detected