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

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

void bu_unpack (char const *s, uint32_t *a, register unsigned int n)
{
  while (n--) uint32_unpack(s + (n<<2), a + n) ;
}