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