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