libzahl

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

zset.3 (412B)


      1 .TH ZSET 3 libzahl
      2 .SH NAME
      3 zset - Copy the value of a big integer
      4 .SH SYNOPSIS
      5 .nf
      6 #include <zahl.h>
      7 
      8 void zset(z_t \fIa\fP, z_t \fIb\fP);
      9 .fi
     10 .SH DESCRIPTION
     11 .B zset
     12 stores the value of
     13 .I b
     14 into
     15 .IR a .
     16 .I a
     17 must already be initialized with
     18 .BR zinit (3).
     19 The value of
     20 .I b
     21 remains unchanged.
     22 .SH SEE ALSO
     23 .BR zseti (3),
     24 .BR zsetu (3),
     25 .BR zsets (3),
     26 .BR zswap (3),
     27 .BR zabs (3),
     28 .BR zneg (3),
     29 .BR ztrunc (3)