uint8ToInt8 function

int uint8ToInt8(
  1. int d
)

Binary conversion of a uint8 to an int8. This is equivalent in C to typecasting an unsigned char to a char.

Implementation

int uint8ToInt8(int d) {
  __uint8[0] = d;
  return __uint8ToInt8[0];
}