| 726 | } |
| 727 | |
| 728 | ConversionResult ConvertUTF8toUTF32Partial(const UTF8 **sourceStart, |
| 729 | const UTF8 *sourceEnd, |
| 730 | UTF32 **targetStart, |
| 731 | UTF32 *targetEnd, |
| 732 | ConversionFlags flags) { |
| 733 | return ConvertUTF8toUTF32Impl(sourceStart, sourceEnd, targetStart, targetEnd, |
| 734 | flags, /*InputIsPartial=*/true); |
| 735 | } |
| 736 | |
| 737 | ConversionResult ConvertUTF8toUTF32(const UTF8 **sourceStart, |
| 738 | const UTF8 *sourceEnd, UTF32 **targetStart, |
nothing calls this directly
no test coverage detected