libzahl

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

zor.3 (494B)


      1 .TH ZOR 3 libzahl
      2 .SH NAME
      3 zor - Calculate the bitwise inclusive OR of two big integers
      4 .SH SYNOPSIS
      5 .nf
      6 #include <zahl.h>
      7 
      8 void zor(z_t \fIa\fP, z_t \fIb\fP, z_t \fIc\fP);
      9 .fi
     10 .SH DESCRIPTION
     11 .B zor
     12 calculates the bitwise OR 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 zor
     21 with non-unique parameters.
     22 .SH SEE ALSO
     23 .BR zand (3),
     24 .BR zxor (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)