libzahl

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

zseti.3 (354B)


      1 .TH ZSETI 3 libzahl
      2 .SH NAME
      3 zseti - Set the value of a big integer to a signed integer.
      4 .SH SYNOPSIS
      5 .nf
      6 #include <zahl.h>
      7 
      8 void zseti(z_t \fIa\fP, int64_t \fIb\fP);
      9 .fi
     10 .SH DESCRIPTION
     11 .B zseti
     12 sets the value of
     13 .I a
     14 to
     15 .IR b .
     16 .I a
     17 must already be initialized with
     18 .BR zinit (3).
     19 .SH SEE ALSO
     20 .BR zset (3),
     21 .BR zsetu (3),
     22 .BR zsets (3),
     23 .BR zswap (3)