BSWAP_8
#define BSWAP_16(x) ((BSWAP_8(x) << 8) | BSWAP_8((x) >> 8))
#define BSWAP_16(x) ((BSWAP_8(x) << 8) | BSWAP_8((x) >> 8))
dnp->dn_extra_slots = BSWAP_8(dnp->dn_extra_slots);
le->le_type = BSWAP_8(le->le_type);
le->le_value_intlen = BSWAP_8(le->le_value_intlen);
lc->l_free.lf_type = BSWAP_8(lc->l_free.lf_type);
lc->l_array.la_type = BSWAP_8(lc->l_array.la_type);
#define BSWAP_16(x) ((BSWAP_8(x) << 8) | BSWAP_8((x) >> 8))
#define LE_8(x) BSWAP_8(x)
#define BE_8(x) BSWAP_8(x)