aboutsummaryrefslogtreecommitdiffstats
path: root/man/zxor.3
diff options
context:
space:
mode:
Diffstat (limited to 'man/zxor.3')
-rw-r--r--man/zxor.331
1 files changed, 31 insertions, 0 deletions
diff --git a/man/zxor.3 b/man/zxor.3
new file mode 100644
index 0000000..69b2d45
--- /dev/null
+++ b/man/zxor.3
@@ -0,0 +1,31 @@
+.TH ZXOR 3 libzahl
+.SH NAME
+zxor - Calculates the bitwise exclusive OR (XOR) of two big integers
+.SH SYNOPSIS
+.nf
+#include <zahl.h>
+
+void zxor(z_t \fIa\fP, z_t \fIb\fP, z_t \fIc\fP);
+.fi
+.SH DESCRIPTION
+.B zxor
+calculates the bitwise XOR of
+.I b
+and
+.IR c ,
+and stores the result in
+.IR a .
+.P
+It is safe to call
+.B zxor
+with non-unique parameters.
+.SH SEE ALSO
+.BR zand (3),
+.BR zor (3),
+.BR znot (3),
+.BR zlsh (3),
+.BR zrsh (3),
+.BR zsplit (3),
+.BR zbtest (3),
+.BR zlsb (3),
+.BR zbits (3)