1#include <tommath.h>
2#ifdef BN_MP_ZERO_MULTI_C
3/* LibTomMath, multiple-precision integer library -- Tom St Denis
4 *
5 * LibTomMath is a library that provides multiple-precision
6 * integer arithmetic as well as number theoretic functionality.
7 *
8 * The library was designed directly after the MPI library by
9 * Michael Fromberger but has been written from scratch with
10 * additional optimizations in place.
11 *
12 * The library is free for all purposes without any express
13 * guarantee it works.
14 *
15 * Tom St Denis, tomstdenis@gmail.com, http://libtom.org
16 */
17#include <stdarg.h>
18
19/* set to zero */
20void mp_zero_multi (mp_int * mp, ...)
21{
22    mp_int* next_mp = mp;
23    va_list args;
24    va_start(args, mp);
25    while (next_mp != NULL) {
26        mp_zero(next_mp);
27        next_mp = va_arg(args, mp_int*);
28    }
29    va_end(args);
30}
31#endif
32
33/* $Source: /cvs/libtom/libtommath/bn_mp_zero.c,v $ */
34/* $Revision: 1.4 $ */
35/* $Date: 2006/12/28 01:25:13 $ */
36