Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
2691
static char *strcpy(char *dst, const char *src)
2692
{
2693
while (*src !=
'\0'
)
2694
*dst++ = *src++;
2695
*dst =
'\0'
;
2696
return dst;
2697
}
2698
2699
static char *strchr(const char *src, int c0)
2700
{
Callers
5
find_debug_altlink
Function · 0.85
try_dwp_file
Function · 0.85
read_srclines
Function · 0.85
test_string
Function · 0.85
getToken
Method · 0.85
Calls
no outgoing calls
Tested by
1
test_string
Function · 0.68