char increment(char value) { static char _inc[256] = {1, 2, 3, 4, ...253, 254, 0}; return _inc[value]; }