home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / bbs_ra / msgq160s.arj / CHARSET.C < prev    next >
Text File  |  1991-07-28  |  237b  |  6 lines

  1. typedef char CHARSET[32];
  2. #define CLEARSET(set)     memset(&set[0], 0, 32)
  3. #define ADDTOSET(set, c) set[(unsigned char)c/8] |= (1 << ((unsigned char)c%8))
  4. #define INSET(set, c)     (set[(unsigned char)c/8] & (1 << ((unsigned char)c%8))
  5.  
  6.