binaryninja/commercial/scc-docs/strncpy.txt

17 lines
426 B
Plaintext
Raw Normal View History

2018-12-13 18:39:52 +00:00
strncpy
=======
:title: Shellcode Compiler Runtime
---------------------------------------------
char* strncpy(char* dest, const char* src, size_t len);
---------------------------------------------
Copies a null-terminated string from `src` into `dest`, with maximum length `len`. Returns a
pointer to the destination string.
See also
--------
link:strcat.html[strcat],
link:strcpy.html[strcpy],
link:strdup.html[strdup]