diff options
Diffstat (limited to 'src/libbiguint/bu_unpack.c')
-rw-r--r-- | src/libbiguint/bu_unpack.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libbiguint/bu_unpack.c b/src/libbiguint/bu_unpack.c new file mode 100644 index 0000000..d4f4130 --- /dev/null +++ b/src/libbiguint/bu_unpack.c @@ -0,0 +1,9 @@ +/* ISC license. */ + +#include <skalibs/uint32.h> +#include <skalibs/biguint.h> + +void bu_unpack (char const *s, uint32 *a, register unsigned int n) +{ + while (n--) uint32_unpack(s + (n<<2), a + n) ; +} |