mtype.h 372 B

1234567
  1. typedef char byte; // signed one byte
  2. typedef unsigned char ubyte; // unsigned one byte
  3. typedef short word; // signed two bytes
  4. typedef unsigned short uword; // unsigned two bytes
  5. typedef long dword; // signed four bytes
  6. typedef unsigned long udword; // unsigned four bytes