--- ui64.pod 2003/03/23 18:07:15 1.6
+++ ui64.pod 2004/01/09 11:24:21 1.7
@@ -40,28 +40,28 @@
=head1 SYNOPSIS
-B<ui64_zero>,
-B<ui64_max>,
-B<ui64_n2i>,
-B<ui64_i2n>,
-B<ui64_s2i>,
-B<ui64_i2s>,
-B<ui64_add>,
-B<ui64_addn>,
-B<ui64_sub>,
-B<ui64_subn>,
-B<ui64_mul>,
-B<ui64_muln>,
-B<ui64_div>,
-B<ui64_divn>,
-B<ui64_and>,
-B<ui64_or>,
-B<ui64_xor>,
-B<ui64_not>,
-B<ui64_rol>,
-B<ui64_ror>,
-B<ui64_len>,
-B<ui64_cmp>.
+B<ui64_zero>,
+B<ui64_max>,
+B<ui64_n2i>,
+B<ui64_i2n>,
+B<ui64_s2i>,
+B<ui64_i2s>,
+B<ui64_add>,
+B<ui64_addn>,
+B<ui64_sub>,
+B<ui64_subn>,
+B<ui64_mul>,
+B<ui64_muln>,
+B<ui64_div>,
+B<ui64_divn>,
+B<ui64_and>,
+B<ui64_or>,
+B<ui64_xor>,
+B<ui64_not>,
+B<ui64_rol>,
+B<ui64_ror>,
+B<ui64_len>,
+B<ui64_cmp>.
=head1 DESCRIPTION
@@ -144,7 +144,7 @@
=item ui64_t B<ui64_add>(ui64_t I<x>, ui64_t I<y>, ui64_t *I<ov>);
-Addition of I<x> and I<y>.
+Addition of I<x> and I<y>.
If I<ov> is not C<NULL>, it receives the overflow value of
this operation (carry).
@@ -154,7 +154,7 @@
=item ui64_t B<ui64_sub>(ui64_t I<x>, ui64_t I<y>, ui64_t *I<ov>);
-Subtraction of I<y> from I<x>.
+Subtraction of I<y> from I<x>.
If I<ov> is not C<NULL>, it receives the overflow value of
this operation (borrow).
@@ -164,7 +164,7 @@
=item ui64_t B<ui64_mul>(ui64_t I<x>, ui64_t I<y>, ui64_t *I<ov>);
-Multiplication of I<x> and I<y>.
+Multiplication of I<x> and I<y>.
If I<ov> is not C<NULL>, it receives the overflow value of
this operation).
@@ -174,7 +174,7 @@
=item ui64_t B<ui64_div>(ui64_t I<x>, ui64_t I<y>, ui64_t *I<ov>);
-Division of I<x> by I<y>.
+Division of I<x> by I<y>.
If I<ov> is not C<NULL>, it receives the overflow value of
this operation (remainder).
|