|
bcmp(3) -- compare byte string
|
The bcmp() function compares byte string b1 against byte string b2, returning zero if they are identical, non-zero otherwise. Both strings are assumed to be len bytes long. Zero-length strings are alw... |
bcopy(3) -- copy byte string
|
The bcopy() function copies len bytes from string src to string dst. The two strings may overlap. If len is zero, no bytes are copied. |
bindresvport(3) -- bind a socket to a privileged IP port
|
bindresvport() and bindresvport_sa() are used to bind a socket descriptor to a privileged IP port, that is, a port number in the range 0-1023. The routine returns 0 if it is successful, otherwise -1 i... |
bindresvport_sa(3) -- bind a socket to a privileged IP port
|
bindresvport() and bindresvport_sa() are used to bind a socket descriptor to a privileged IP port, that is, a port number in the range 0-1023. The routine returns 0 if it is successful, otherwise -1 i... |
bindtextdomain(3) -- message handling functions
|
The gettext(), dgettext(), and dcgettext() functions attempt to retrieve a target string based on the specified msgid argument within the context of a specific domain and the current locale. The lengt... |
bind_textdomain_codeset(3) -- message handling functions
|
The gettext(), dgettext(), and dcgettext() functions attempt to retrieve a target string based on the specified msgid argument within the context of a specific domain and the current locale. The lengt... |
BIO_ctrl(3) -- BIO control operations
|
BIO_ctrl(), BIO_callback_ctrl(), BIO_ptr_ctrl() and BIO_int_ctrl() are BIO "control" operations taking arguments of various types. These functions are not normally called directly, various macros ar... |
BIO_find_type(3) -- BIO chain traversal
|
The BIO_find_type() searches for a BIO of a given type in a chain, starting at BIO b. If type is a specific type (such as BIO_TYPE_MEM) then a search is made for a BIO of that type. If type is a gener... |
BIO_f_base64(3) -- base64 BIO filter
|
BIO_f_base64() returns the base64 BIO method. This is a filter BIO that base64 encodes any data written through it and decodes any data read through it. Base64 BIOs do not support BIO_gets() or BIO_pu... |
BIO_f_buffer(3) -- buffering BIO
|
BIO_f_buffer() returns the buffering BIO method. Data written to a buffering BIO is buffered and periodically written to the next BIO in the chain. Data read from a buffering BIO comes from an interna... |
BIO_f_cipher(3) -- cipher BIO filter
|
BIO_f_cipher() returns the cipher BIO method. This is a filter BIO that encrypts any data written through it, and decrypts any data read from it. It is a BIO wrapper for the cipher routines EVP_Cipher... |
BIO_f_md(3) -- message digest BIO filter
|
BIO_f_md() returns the message digest BIO method. This is a filter BIO that digests any data passed through it, it is a BIO wrapper for the digest routines EVP_DigestInit(), EVP_DigestUpdate() and EVP... |
BIO_f_null(3) -- null filter
|
BIO_f_null() returns the null filter BIO method. This is a filter BIO that does nothing. All requests to a null filter BIO are passed through to the next BIO in the chain: this means that a BIO chain ... |