MCPcopy Create free account
hub / github.com/cppla/ServerStatus / str_copy

Function str_copy

server/src/system.c:1563–1567  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1561}
1562
1563void str_copy(char *dst, const char *src, int dst_size)
1564{
1565 strncpy(dst, src, dst_size);
1566 dst[dst_size-1] = 0; /* assure null termination */
1567}
1568
1569int str_length(const char *str)
1570{

Callers 12

MakeBanInfoMethod · 0.85
BanMethod · 0.85
fs_listdirFunction · 0.85
UpdateMethod · 0.85
AcceptClientMethod · 0.85
SSLCheckThreadFunction · 0.85
CConfigMethod · 0.85
HandleMessageMethod · 0.85
ReadConfigMethod · 0.85
mainFunction · 0.85
UpdateMethod · 0.85
SendMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected