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

Function String_AppendString

src/String.c:269–274  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

267}
268
269void String_AppendString(cc_string* str, const cc_string* src) {
270 int i;
271 for (i = 0; i < src->length; i++) {
272 String_Append(str, src->buffer[i]);
273 }
274}
275
276void String_AppendColorless(cc_string* str, const cc_string* src) {
277 char c;

Callers 15

DumpFrameFunction · 0.85
InputWidget_FormatLineFunction · 0.85
ChatInputWidget_UpKeyFunction · 0.85
ChatInputWidget_DownKeyFunction · 0.85
ChatInputWidget_TabKeyFunction · 0.85
Clipboard_GetTextFunction · 0.85
Options_GetFunction · 0.85
Http_SetRequestHeadersFunction · 0.85
VirtualKeyboard_OpenFunction · 0.85
String_CopyFunction · 0.85

Calls 1

String_AppendFunction · 0.85

Tested by

no test coverage detected