MCPcopy Create free account
hub / github.com/GJDuck/e9patch / strcat

Function strcat

examples/stdlib.c:2676–2679  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2674}
2675
2676static char *strcat(char *dst, const char *src)
2677{
2678 return strncat(dst, src, SIZE_MAX);
2679}
2680
2681static char *strncpy(char *dst, const char *src, size_t n)
2682{

Callers 1

test_stringFunction · 0.85

Calls 1

strncatFunction · 0.85

Tested by 1

test_stringFunction · 0.68