binaryninja/personal/scc-docs/strcat.txt

17 lines
432 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01: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]