| 559 | } |
| 560 | |
| 561 | inline static bool IsUTF8Continuation( const char p ) { |
| 562 | return ( p & 0x80 ) != 0; |
| 563 | } |
| 564 | |
| 565 | static const char* ReadBOM( const char* p, bool* hasBOM ); |
| 566 | // p is the starting location, |
nothing calls this directly
no outgoing calls
no test coverage detected