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

Method readString

Engine/source/core/stream/stream.cpp:139–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

137}
138
139void Stream::readString(char buf[256])
140{
141 U8 len;
142 read(&len);
143 read(S32(len), buf);
144 buf[len] = 0;
145}
146
147const char *Stream::readSTString(bool casesens)
148{

Callers 15

unpackUpdateMethod · 0.45
unpackDataMethod · 0.45
unpackDataMethod · 0.45
unpackUpdateMethod · 0.45
handleConnectRequestMethod · 0.45
handleConnectRejectMethod · 0.45
handleDisconnectMethod · 0.45
unpackMethod · 0.45
readDemoStartBlockMethod · 0.45
unpackStringMethod · 0.45
unpackMethod · 0.45

Calls 1

readFunction · 0.50

Tested by

no test coverage detected