MCPcopy Create free account
hub / github.com/antirez/llama.cpp-deepseek-v4-flash / is_hex_digit

Function is_hex_digit

common/peg-parser.cpp:30–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28}
29
30static 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

Callers 2

parse_hex_escapeFunction · 0.85
handle_unicode_escapeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected