MCPcopy Create free account
hub / github.com/ZDoom/Raze / ReadString

Function ReadString

source/core/d_protocol.cpp:44–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42
43
44char *ReadString (uint8_t **stream)
45{
46 char *string = *((char **)stream);
47
48 *stream += strlen (string) + 1;
49 return copystring (string);
50}
51
52const char *ReadStringConst(uint8_t **stream)
53{

Callers 2

DoArbitrateFunction · 0.85
startSaveGameFunction · 0.85

Calls 1

copystringFunction · 0.85

Tested by

no test coverage detected