| 735 | } |
| 736 | |
| 737 | ConversionResult ConvertUTF8toUTF32(const UTF8 **sourceStart, |
| 738 | const UTF8 *sourceEnd, UTF32 **targetStart, |
| 739 | UTF32 *targetEnd, ConversionFlags flags) { |
| 740 | return ConvertUTF8toUTF32Impl(sourceStart, sourceEnd, targetStart, targetEnd, |
| 741 | flags, /*InputIsPartial=*/false); |
| 742 | } |
| 743 | |
| 744 | /* --------------------------------------------------------------------- |
| 745 |
nothing calls this directly
no test coverage detected