MCPcopy Create free account
hub / github.com/ReadyTalk/avian / readByte

Function readByte

src/machine.cpp:741–750  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

739}
740
741unsigned 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
752GcCharArray* parseUtf8NonAscii(Thread* t,
753 AbstractStream& s,

Callers 1

parseUtf8NonAsciiFunction · 0.85

Calls 1

read1Method · 0.45

Tested by

no test coverage detected