
typedef unsigned char uint8_t;  // works on all compilers
typedef signed char int8_t;     // might not work on all compilers
typedef unsigned short uint16_t;// Assumes 16 bit short
// and so forth  ...
