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