Binary conversion of a uint8 to an int8. This is equivalent in C to typecasting an unsigned char to a char.
int uint8ToInt8(int d) { __uint8[0] = d; return __uint8ToInt8[0]; }