/* $Id: pack_lsb.c 616 2005-08-19 20:11:01Z bruce $ */ #include "uint32.h" #ifndef __INLINE_UINT_LSB void uint32_pack_lsb(uint32 u, unsigned char b[4]) { b[0] = u & 0xff; u >>= 8; b[1] = u & 0xff; u >>= 8; b[2] = u & 0xff; u >>= 8; b[3] = u; } #endif