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

Function String_AppendConst

src/String.c:257–261  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

255}
256
257void String_AppendConst(cc_string* str, const char* src) {
258 for (; *src; src++) {
259 String_Append(str, *src);
260 }
261}
262
263void String_AppendAll(cc_string* str, const void* data, int len) {
264 const char* src = (const char*)data;

Callers 15

GenVertexShaderFunction · 0.85
AddPostProcessingFunction · 0.85
GenFragmentShaderFunction · 0.85
TouchCtrls_UpdateScaleFunction · 0.85
UnhandledFilterFunction · 0.85
Platform_LoadSysFontsFunction · 0.85
Process_StartGame2Function · 0.85
DynamicLib_DescribeErrorFunction · 0.85
Directory_GetCachePathFunction · 0.85
SSLBackend_DescribeErrorFunction · 0.85
HttpClient_SerialiseFunction · 0.85

Calls 1

String_AppendFunction · 0.85

Tested by

no test coverage detected