binaryninja/personal/scc-docs/strcpy.txt

17 lines
436 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
strcpy
======
:title: Shellcode Compiler Runtime
---------------------------------------------
char* strcpy(char* dest, const char* src);
---------------------------------------------
Copies a null-terminated string from `src` into `dest`. The maximum length
of the string is not bounded. Returns a pointer to the destination string.
See also
--------
link:strcat.html[strcat],
link:strdup.html[strdup],
link:strncpy.html[strncpy]