MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / ReadStringZ

Method ReadStringZ

CobaltFusion/CircularBuffer.cpp:89–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

87}
88
89std::string CircularBuffer::ReadStringZ()
90{
91 //std::cerr << " ReadStringZ\n";
92
93 std::string message;
94 while (auto ch = Read())
95 {
96 message.push_back(ch);
97 }
98 //std::cerr << " ReadStringZ done\n";
99 return message;
100}
101
102void CircularBuffer::WriteStringZ(const char* message)
103{

Callers

nothing calls this directly

Calls 1

ReadFunction · 0.50

Tested by

no test coverage detected