libzahl

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

zodd.3 (349B)


      1 .TH ZODD 3 libzahl
      2 .SH NAME
      3 zodd - Check whether a big integer is odd
      4 .SH SYNOPSIS
      5 .nf
      6 #include <zahl.h>
      7 
      8 int zodd(z_t \fIa\fP);
      9 .fi
     10 .SH DESCRIPTION
     11 .B zodd
     12 checks whether
     13 .I a
     14 is odd.
     15 .SH RETURN VALUE
     16 .B zeven
     17 returns 1 if
     18 .I a
     19 is odd, and 0 otherwise.
     20 .SH SEE ALSO
     21 .BR zeven (3),
     22 .BR zodd_nonzero (3),
     23 .BR zzero (3),
     24 .BR zsignum (3),
     25 .BR zcmp (3)