#define SILC_GET16_MSB ...
Return two 8-bit bytes, least significant bytes first.
#define SILC_GET16_LSB(l, cp) \ do { \ (l) = ((SilcUInt32)(SilcUInt8)(cp)[0]) \ | ((SilcUInt32)(SilcUInt8)(cp)[1] << 8); \ } while(0)