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

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

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