libzahl

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

zfree.3 (316B)


      1 .TH ZFREE 3 libzahl
      2 .SH NAME
      3 zfree - Cache an allocation for reuse
      4 .SH SYNOPSIS
      5 .nf
      6 #include <zahl.h>
      7 
      8 void zfree(z_t \fIa\fP);
      9 .fi
     10 .SH DESCRIPTION
     11 .B zfree
     12 caches the memory stored in
     13 .I a
     14 for reuse.
     15 .I a
     16 must not be used again until
     17 .BR zinit (3),
     18 is called for it again.
     19 .SH SEE ALSO
     20 .BR zinit (3),
     21 .BR zswap (3)