MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / strcat

Function strcat

rEFIt_UEFI/Platform/Posix/string.h:30–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28}
29
30inline char* strcat(char* s1, const char* s2)
31{
32 AsciiStrCatS(s1, AsciiStrLen(s1)+1, s2);
33 return s1;
34}
35
36char* strncat(char* s1, const char* s2, size_t n);
37

Callers 15

XStringAbstractClass · 0.85
GenerateFvImageFunction · 0.85
PrintHelpFunction · 0.85
PrintErrorFunction · 0.85
StringListToStringFunction · 0.85
OsPathPeerFilePathFunction · 0.85
mainFunction · 0.85
OptionInitializationMethod · 0.85
AppendIncludePathMethod · 0.85
SetPkgOutputFileNameMethod · 0.85

Calls 2

AsciiStrCatSFunction · 0.85
AsciiStrLenFunction · 0.85

Tested by

no test coverage detected