#define SILC_PUT32_MSB ...
Put four 8-bit bytes, most significant bytes first.
#define SILC_PUT32_MSB(l, cp) \ do { \ (cp)[0] = (SilcUInt8)((l) >> 24); \ (cp)[1] = (SilcUInt8)((l) >> 16); \ (cp)[2] = (SilcUInt8)((l) >> 8); \ (cp)[3] = (SilcUInt8)(l); \ } while(0)