[#OPENSSL_strlcpy] = OPENSSL_strlcpy :mrdocs: Copy `src` into `dst` with BSD strlcpy semantics. == Synopsis Declared in `<openssl/crypto.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- size_t OPENSSL_strlcpy( char* dst, char const* src, size_t siz); ---- == Return Value Length of `src` (as if there were no truncation). == Parameters [cols="1,4"] |=== | Name| Description | *dst* | Destination buffer of `siz` bytes. | *src* | NUL‐terminated source string. | *siz* | Capacity of `dst` including space for the NUL terminator. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#