| 739 | } |
| 740 | |
| 741 | unsigned readByte(AbstractStream& s, unsigned* value) |
| 742 | { |
| 743 | if (*value == NoByte) { |
| 744 | return s.read1(); |
| 745 | } else { |
| 746 | unsigned r = *value; |
| 747 | *value = NoByte; |
| 748 | return r; |
| 749 | } |
| 750 | } |
| 751 | |
| 752 | GcCharArray* parseUtf8NonAscii(Thread* t, |
| 753 | AbstractStream& s, |
no test coverage detected