binaryninja/commercial/scc-docs/strcat.txt

17 lines
432 B
Plaintext
Raw Normal View History

2018-12-13 18:39:52 +00:00
strcat
======
:title: Shellcode Compiler Runtime
---------------------------------------------
char* strcat(char* dest, const char* src);
---------------------------------------------
Appends the null-terminated string `src` to `dest`. The maximum length
of the string is not bounded. Returns a pointer to the destination string.
See also
--------
link:strcpy.html[strcpy],
link:strdup.html[strdup],
link:strncpy.html[strncpy]