/* ISC license. */ #include #include #include void uint32_pack_big (char *s, uint32_t u) { u = uint32_big(u) ; memcpy(s, &u, sizeof(uint32_t)) ; }