For zero terminated strings.
| 398 | |
| 399 | // For zero terminated strings. |
| 400 | bool IsTextUtf8(const byte *Src) |
| 401 | { |
| 402 | return IsTextUtf8(Src,strlen((const char *)Src)); |
| 403 | } |
| 404 | |
| 405 | |
| 406 | // Source data can be both with and without UTF-8 BOM. |
no outgoing calls
no test coverage detected