#include int8_t int8_topbit_mask(int8_t x) { x >>= 7; return -(1 & x); }