MCPcopy Create free account
hub / github.com/beefytech/Beef / ReadAscii8SizedString

Method ReadAscii8SizedString

BeefySysLib/DataStream.cpp:91–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89}
90
91String DataStream::ReadAscii8SizedString()
92{
93 int size = (int) (uint8) ReadInt8();
94
95 String aString;
96 aString.Append(' ', size);
97 Read((void*) aString.c_str(), size);
98
99 return aString;
100}
101
102String DataStream::ReadAscii32SizedString()
103{

Callers 3

ReadPSDValueMethod · 0.80
ReadExtraInfoMethod · 0.80
InitMethod · 0.80

Calls 3

ReadFunction · 0.85
AppendMethod · 0.80
c_strMethod · 0.45

Tested by

no test coverage detected