home *** CD-ROM | disk | FTP | other *** search
/ Point Programming 1 / PPROG1.ISO / c / snippets / hilobyte.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-03  |  84 b   |  3 lines

  1. #define LOBYTE(x) ((unsigned char)(x))
  2. #define HIBYTE(x) ((unsigned int)(x) >> 8)
  3.