libzahl

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

zand.3 (490B)


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