MCPcopy Create free account
hub / github.com/ClassiCube/ClassiCube / String_AppendAll

Function String_AppendAll

src/String.c:263–267  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

261}
262
263void String_AppendAll(cc_string* str, const void* data, int len) {
264 const char* src = (const char*)data;
265 int i;
266 for (i = 0; i < len; i++) String_Append(str, src[i]);
267}
268
269void String_AppendString(cc_string* str, const cc_string* src) {
270 int i;

Callers 9

HttpClient_SerialiseFunction · 0.85
LogInvalidSkinFunction · 0.85
EncipherBlockFunction · 0.85
Platform_DecryptFunction · 0.85
Platform_DecodePathFunction · 0.85
Clipboard_GetTextFunction · 0.85
ReadStringFunction · 0.85
LogOnscreenFunction · 0.85
AppendDeviceFunction · 0.85

Calls 1

String_AppendFunction · 0.85

Tested by

no test coverage detected