home *** CD-ROM | disk | FTP | other *** search
-
- /*Prototype definitions for my personal libarary routines -- */
-
- void setbit (char *, unsigned);
- /*set a the nth bit from a pointer*/
- void clrbit (char *, unsigned);
- /*clear the nth bit from a pointer*/
- char testbit (char *, unsigned);
- /*return a 0 if the nth bit from a pointer is not set;
- else return a 1*/
- void hexdump (char *, unsigned);
- /*display a hex dump of memory starting at first arg for
- second arg number of bytes*/
-