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

#include <skalibs/biguint.h>

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