1 /* LibTomPoly, Polynomial Basis Math -- Tom St Denis
3 * LibTomPoly is a public domain library that provides
4 * polynomial basis arithmetic support. It relies on
5 * LibTomMath for large integer support.
7 * This library is free for all purposes without any
8 * express guarantee that it works.
10 * Tom St Denis, tomstdenis@iahu.ca, http://poly.libtomcrypt.org
15 void pb_clear_multi(pb_poly
*mp
, ...)
17 pb_poly
* next_mp
= mp
;
20 while (next_mp
!= NULL
) {
22 next_mp
= va_arg(args
, pb_poly
*);