/* ISC license. */ #include #include void uint64_pack_big (char *s, uint64_t u) { u = uint64_big(u) ; memcpy(s, &u, sizeof(uint64_t)) ; }