MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / is_digit_char

Function is_digit_char

subprojects/llama.cpp/src/llama-grammar.cpp:93–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91}
92
93static bool is_digit_char(char c) {
94 return '0' <= c && c <= '9';
95}
96
97static bool is_word_char(char c) {
98 return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || c == '-' || is_digit_char(c);

Callers 3

is_word_charFunction · 0.85
parse_intFunction · 0.85
parse_sequenceMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected