| 564 | return p; |
| 565 | } |
| 566 | static char* SkipWhiteSpace( char* const p, int* curLineNumPtr ) { |
| 567 | return const_cast<char*>( SkipWhiteSpace( const_cast<const char*>(p), curLineNumPtr ) ); |
| 568 | } |
| 569 | |
| 570 | // Anything in the high order range of UTF-8 is assumed to not be whitespace. This isn't |
| 571 | // correct, but simple, and usually works. |
no outgoing calls
no test coverage detected