#include void inc128big(int8_t x[16]) { int8_t mask = -1; for (int i = 15;i >= 0;--i) { x[i] -= mask; mask &= -(x[i] == 0); } }