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