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

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

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