From 52261db09ef9dbf5abc95baed22722c5c332f9f7 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Tue, 20 Jun 2006 17:33:26 +0000 Subject: Pulling OpenSSL 0.9.8b into trunk svn path=/openssl/trunk; revision=3 --- .../trunk/doc/crypto/ERR_load_crypto_strings.pod | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 openssl/trunk/doc/crypto/ERR_load_crypto_strings.pod (limited to 'openssl/trunk/doc/crypto/ERR_load_crypto_strings.pod') diff --git a/openssl/trunk/doc/crypto/ERR_load_crypto_strings.pod b/openssl/trunk/doc/crypto/ERR_load_crypto_strings.pod new file mode 100644 index 00000000..9bdec75a --- /dev/null +++ b/openssl/trunk/doc/crypto/ERR_load_crypto_strings.pod @@ -0,0 +1,46 @@ +=pod + +=head1 NAME + +ERR_load_crypto_strings, SSL_load_error_strings, ERR_free_strings - +load and free error strings + +=head1 SYNOPSIS + + #include + + void ERR_load_crypto_strings(void); + void ERR_free_strings(void); + + #include + + void SSL_load_error_strings(void); + +=head1 DESCRIPTION + +ERR_load_crypto_strings() registers the error strings for all +B functions. SSL_load_error_strings() does the same, +but also registers the B error strings. + +One of these functions should be called before generating +textual error messages. However, this is not required when memory +usage is an issue. + +ERR_free_strings() frees all previously loaded error strings. + +=head1 RETURN VALUES + +ERR_load_crypto_strings(), SSL_load_error_strings() and +ERR_free_strings() return no values. + +=head1 SEE ALSO + +L, L + +=head1 HISTORY + +ERR_load_error_strings(), SSL_load_error_strings() and +ERR_free_strings() are available in all versions of SSLeay and +OpenSSL. + +=cut -- cgit v1.2.3