X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=doc%2Fman3%2FBIO_printf.pod;h=221881d123cabb31801ac25ff15dc5b9d320631b;hp=7f455f3682eb143e220fec9cc905b4149f61dada;hb=HEAD;hpb=4746f25ac62e5bbdc07eedcec9c9a27547577141 diff --git a/doc/man3/BIO_printf.pod b/doc/man3/BIO_printf.pod index 7f455f3682..221881d123 100644 --- a/doc/man3/BIO_printf.pod +++ b/doc/man3/BIO_printf.pod @@ -9,25 +9,25 @@ BIO_printf, BIO_vprintf, BIO_snprintf, BIO_vsnprintf #include - int BIO_printf(BIO *bio, const char *format, ...) - int BIO_vprintf(BIO *bio, const char *format, va_list args) + int BIO_printf(BIO *bio, const char *format, ...); + int BIO_vprintf(BIO *bio, const char *format, va_list args); - int BIO_snprintf(char *buf, size_t n, const char *format, ...) - int BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args) + int BIO_snprintf(char *buf, size_t n, const char *format, ...); + int BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args); =head1 DESCRIPTION BIO_printf() is similar to the standard C printf() function, except that -the output is sent to the specified BIO, B, rather than standard +the output is sent to the specified BIO, I, rather than standard output. All common format specifiers are supported. BIO_vprintf() is similar to the vprintf() function found on many platforms, -the output is sent to the specified BIO, B, rather than standard +the output is sent to the specified BIO, I, rather than standard output. All common format specifiers are supported. The argument -list B is a stdarg argument list. +list I is a stdarg argument list. BIO_snprintf() is for platforms that do not have the common snprintf() -function. It is like sprintf() except that the size parameter, B, +function. It is like sprintf() except that the size parameter, I, specifies the size of the output buffer. BIO_vsnprintf() is to BIO_snprintf() as BIO_vprintf() is to BIO_printf(). @@ -38,9 +38,16 @@ All functions return the number of bytes written, or -1 on error. For BIO_snprintf() and BIO_vsnprintf() this includes when the output buffer is too small. +=head1 NOTES + +Except when I is 0, both BIO_snprintf() and BIO_vsnprintf() always +terminate their output with C<'\0'>. This includes cases where -1 is +returned, such as when there is insufficient space to output the whole +string. + =head1 COPYRIGHT -Copyright 2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy