Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/coreboot/coreboot
/ strcat
Function
strcat
src/commonlib/bsd/string.c:33–42 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
31
}
32
33
char *strcat(char *dst, const char *src)
34
{
35
char *ptr = dst + strlen(dst);
36
37
while (*src)
38
*ptr++ = *src++;
39
40
*ptr =
'\0'
;
41
return dst;
42
}
43
44
char *strncat(char *dst, const char *src, size_t n)
45
{
Callers
14
test_strcat
Function · 0.85
main
Function · 0.85
variable_add
Function · 0.85
__expand_string
Function · 0.85
clicked
Method · 0.85
escape_string_value
Function · 0.85
str_append
Function · 0.85
dbg_sym_flags
Function · 0.85
main
Function · 0.85
do_indentation_string
Function · 0.85
print_with_prefix
Function · 0.85
fmap_flags_to_string_test
Function · 0.85
Calls
1
strlen
Function · 0.85
Tested by
2
test_strcat
Function · 0.68
fmap_flags_to_string_test
Function · 0.68