1 | =pod
|
---|
2 |
|
---|
3 | =head1 NAME
|
---|
4 |
|
---|
5 | BIO_printf, BIO_vprintf, BIO_snprintf, BIO_vsnprintf
|
---|
6 | - formatted output to a BIO
|
---|
7 |
|
---|
8 | =head1 SYNOPSIS
|
---|
9 |
|
---|
10 | #include <openssl/bio.h>
|
---|
11 |
|
---|
12 | int BIO_printf(BIO *bio, const char *format, ...)
|
---|
13 | int BIO_vprintf(BIO *bio, const char *format, va_list args)
|
---|
14 |
|
---|
15 | int BIO_snprintf(char *buf, size_t n, const char *format, ...)
|
---|
16 | int BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args)
|
---|
17 |
|
---|
18 | =head1 DESCRIPTION
|
---|
19 |
|
---|
20 | BIO_printf() is similar to the standard C printf() function, except that
|
---|
21 | the output is sent to the specified BIO, B<bio>, rather than standard
|
---|
22 | output. All common format specifiers are supported.
|
---|
23 |
|
---|
24 | BIO_vprintf() is similar to the vprintf() function found on many platforms,
|
---|
25 | the output is sent to the specified BIO, B<bio>, rather than standard
|
---|
26 | output. All common format specifiers are supported. The argument
|
---|
27 | list B<args> is a stdarg argument list.
|
---|
28 |
|
---|
29 | BIO_snprintf() is for platforms that do not have the common snprintf()
|
---|
30 | function. It is like sprintf() except that the size parameter, B<n>,
|
---|
31 | specifies the size of the output buffer.
|
---|
32 |
|
---|
33 | BIO_vsnprintf() is to BIO_snprintf() as BIO_vprintf() is to BIO_printf().
|
---|
34 |
|
---|
35 | =head1 RETURN VALUES
|
---|
36 |
|
---|
37 | All functions return the number of bytes written, or -1 on error.
|
---|
38 | For BIO_snprintf() and BIO_vsnprintf() this includes when the output
|
---|
39 | buffer is too small.
|
---|
40 |
|
---|
41 | =head1 COPYRIGHT
|
---|
42 |
|
---|
43 | Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
|
---|
44 |
|
---|
45 | Licensed under the OpenSSL license (the "License"). You may not use
|
---|
46 | this file except in compliance with the License. You can obtain a copy
|
---|
47 | in the file LICENSE in the source distribution or at
|
---|
48 | L<https://www.openssl.org/source/license.html>.
|
---|
49 |
|
---|
50 | =cut
|
---|