MCPcopy Create free account
hub / github.com/ading2210/linuxpdf / is_ident_first

Function is_ident_first

tinyemu/json.c:318–323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

316}
317
318static inline BOOL is_ident_first(int c)
319{
320 return (c >= 'a' && c <= 'z') ||
321 (c >= 'A' && c <= 'Z') ||
322 c == '_' || c == '$';
323}
324
325static int parse_ident(char *buf, int buf_size, const char **pp)
326{

Callers 2

parse_identFunction · 0.85
json_parse_value2Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected