binaryninja/personal/scc-docs/strncpy.txt

17 lines
426 B
Plaintext
Raw Normal View History

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