MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / readString

Method readString

Engine/source/core/stream/streamObject.cpp:122–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120}
121
122const char * StreamObject::readString()
123{
124 if(mStream == NULL)
125 return NULL;
126
127 char *buffer = Con::getReturnBuffer(256);
128 mStream->readString(buffer);
129 return buffer;
130}
131
132const char *StreamObject::readLongString(U32 maxStringLen)
133{

Callers 1

streamObject.cppFile · 0.45

Calls 1

getReturnBufferFunction · 0.85

Tested by

no test coverage detected