MCPcopy Index your code
hub / github.com/IBM/Project_CodeNet / is_id_start

Function is_id_start

tools/tokenizer/pytokenize.c:208–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206}
207
208static int is_id_start(int cp, int utf8_len)
209{
210 if (utf8_len == 1 && isalpha(cp) || cp == '_' || utf8_len > 1)
211 return 1;
212 return 0;
213}
214
215static int is_id_follow(int cp, int utf8_len)
216{

Callers 1

tokenizeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected