mirror of
https://github.com/openssl/openssl.git
synced 2024-12-15 06:01:37 +08:00
9b86974e0c
L<foo|foo> is sub-optimal If the xref is the same as the title, which is what we do, then you only need L<foo>. This fixes all 1457 occurrences in 349 files. Approximately. (And pod used to need both.) Reviewed-by: Richard Levitte <levitte@openssl.org>
24 lines
266 B
Plaintext
24 lines
266 B
Plaintext
=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)>
|
|
|
|
=head1 HISTORY
|
|
|
|
BN_swap was added in OpenSSL 0.9.7.
|
|
|
|
=cut
|