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

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

void bu_copy_internal (register uint32_t *b, register uint32_t const *a, register unsigned int n)
{
  while (n--) b[n] = a[n] ;
}