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

Function strcpy

examples/stdlib.c:2691–2697  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2689}
2690
2691static char *strcpy(char *dst, const char *src)
2692{
2693 while (*src != '\0')
2694 *dst++ = *src++;
2695 *dst = '\0';
2696 return dst;
2697}
2698
2699static char *strchr(const char *src, int c0)
2700{

Callers 5

find_debug_altlinkFunction · 0.85
try_dwp_fileFunction · 0.85
read_srclinesFunction · 0.85
test_stringFunction · 0.85
getTokenMethod · 0.85

Calls

no outgoing calls

Tested by 1

test_stringFunction · 0.68