binaryninja/scc-docs/strdup.txt
Giulio De Pasquale 52e9dc828b dindon
2018-12-13 18:39:52 +00:00

16 lines
348 B
Plaintext

strdup
======
:title: Shellcode Compiler Runtime
---------------------------------------------
char* strdup(const char* str);
---------------------------------------------
Duplicates the string `str` on the heap, and returns a pointer to the new string.
See also
--------
link:free.html[free],
link:malloc.html[malloc],
link:strcpy.html[strcpy]