#define SILC_PUT16_MSB ...
Put two 8-bit bytes, most significant bytes first.
#define SILC_PUT16_MSB(l, cp) \ do { \ (cp)[0] = (SilcUInt8)((l) >> 8); \ (cp)[1] = (SilcUInt8)(l); \ } while(0)