MCPcopy Create free account
hub / github.com/apache/nuttx / strcat

Function strcat

include/string.h:122–127  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120
121#if CONFIG_FORTIFY_SOURCE > 0
122fortify_function(strcat) FAR char *strcat(FAR char *dest,
123 FAR const char *src)
124{
125 fortify_assert(strlen(dest) + strlen(src) + 1 <= fortify_size(dest, 0));
126 return __real_strcat(dest, src);
127}
128
129fortify_function(strlcat) size_t strlcat(FAR char *dst,
130 FAR const char *src,

Callers 9

esp_nxdiag_readFunction · 0.50
esp_nxdiag_readFunction · 0.50
htmlize_characterFunction · 0.50
htmlize_expressionFunction · 0.50
get_paranumFunction · 0.50
do_dependencyFunction · 0.50
parse_argsFunction · 0.50
do_archiveFunction · 0.50
noteram_dump_printfFunction · 0.50

Calls 1

strlenFunction · 0.70

Tested by

no test coverage detected