[#BIO_write_ex] = BIO_write_ex :mrdocs: Write up to `dlen` bytes from `data` to a BIO. == Synopsis Declared in `<openssl/bio.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int BIO_write_ex( xref:BIO.adoc[BIO]* b, void const* data, size_t dlen, size_t* written); ---- == Return Value 1 if any data was written, or 0 otherwise. == Parameters [cols="1,4"] |=== | Name| Description | *b* | Destination BIO. | *data* | Bytes to write. | *dlen* | Number of bytes to write. | *written* | On success, receives the number of bytes actually written. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#