a528d4f0a9
If something was "present in all versions" of SSLeay, or if it was added to a version of SSLeay (and therefore predates OpenSSL), remove mention of it. Documentation history now starts with OpenSSL. Remove mention of all history before OpenSSL 0.9.8, inclusive. Remove all AUTHOR sections. Reviewed-by: Tim Hudson <tjh@openssl.org>
19 lines
213 B
Text
19 lines
213 B
Text
=pod
|
|
|
|
=head1 NAME
|
|
|
|
BN_swap - exchange BIGNUMs
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
#include <openssl/bn.h>
|
|
|
|
void BN_swap(BIGNUM *a, BIGNUM *b);
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
BN_swap() exchanges the values of I<a> and I<b>.
|
|
|
|
L<bn(3)>
|
|
|
|
=cut
|