1 2 3 4 5 6 7 8 9
/* ISC license. */ #include <stdint.h> #include <skalibs/biguint.h> void bu_zero (register uint32_t *z, register unsigned int n) { while (n--) z[n] = 0 ; }