home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / MYLIB.H < prev    next >
Encoding:
Text File  |  1987-09-19  |  452 b   |  14 lines

  1.  
  2. /*Prototype definitions for my personal libarary routines -- */
  3.  
  4. void setbit (char *, unsigned);
  5.     /*set a the nth bit from a pointer*/
  6. void clrbit (char *, unsigned);
  7.     /*clear the nth bit from a pointer*/
  8. char testbit (char *, unsigned);
  9.     /*return a 0 if the nth bit from a pointer is not set;
  10.       else return a 1*/
  11. void hexdump (char *, unsigned);
  12.     /*display a hex dump of memory starting at first arg for
  13.       second arg number of bytes*/
  14.