libzahl

big integer library
git clone git://git.suckless.org/libzahl
Log | Files | Refs | README | LICENSE

zxor.3 (505B)


      1 .TH ZXOR 3 libzahl
      2 .SH NAME
      3 zxor - Calculate the bitwise exclusive OR (XOR) of two big integers
      4 .SH SYNOPSIS
      5 .nf
      6 #include <zahl.h>
      7 
      8 void zxor(z_t \fIa\fP, z_t \fIb\fP, z_t \fIc\fP);
      9 .fi
     10 .SH DESCRIPTION
     11 .B zxor
     12 calculates the bitwise XOR of
     13 .I b
     14 and
     15 .IR c ,
     16 and stores the result in
     17 .IR a .
     18 .P
     19 It is safe to call
     20 .B zxor
     21 with non-unique parameters.
     22 .SH SEE ALSO
     23 .BR zand (3),
     24 .BR zor (3),
     25 .BR znot (3),
     26 .BR zlsh (3),
     27 .BR zrsh (3),
     28 .BR zsplit (3),
     29 .BR zbtest (3),
     30 .BR zbset (3),
     31 .BR zlsb (3),
     32 .BR zbits (3)