summaryrefslogtreecommitdiff
path: root/src/libbiguint/bu_zero.c
blob: 07efd69c9d1c48d078ba5f6dd2e001c2fcbbfe06 (plain)
1
2
3
4
5
6
7
8
9
/* ISC license. */

#include <skalibs/uint32.h>
#include <skalibs/biguint.h>

void bu_zero (register uint32 *z, register unsigned int n)
{
  while (n--) z[n] = 0 ;
}