| 536 | } |
| 537 | |
| 538 | inline static bool IsNameChar( unsigned char ch ) { |
| 539 | return IsNameStartChar( ch ) |
| 540 | || isdigit( ch ) |
| 541 | || ch == '.' |
| 542 | || ch == '-'; |
| 543 | } |
| 544 | |
| 545 | inline static bool StringEqual( const char* p, const char* q, int nChar=INT_MAX ) { |
| 546 | int n = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected