home *** CD-ROM | disk | FTP | other *** search
- /*Program 1_1b - Simple bit manipulation functions
- by Stephen R. Davis, '87
-
- This is the same source code as is Prg1_1a, only now broken
- up into seperate source modules similar to real projects.
- */
-
- #include <stdio.h>
- #include "mylib.h"
-
- /*define an array of bits which we use for the following routines*/
-
- static char bitarray[] = {0x80,0x40,0x20,0x10,0x08,0x04,0x02,0x01};
-
- /*SetBit - set the 'bitnum'th bit offset from 'ptr'*/
- void setbit (ptr, bitnum)
- char *ptr;
- unsigned bitnum;
- {
- unsigned bitpos, bytepos;
-
- bytepos = bitnum >> 3;
- bitpos = bitnum & 0x07;
- *(ptr+bytepos) |= bitarray[bitpos];
- }
-
- /*ClrBit - clear the 'bitnum'th bit offset from 'ptr'*/
- void clrbit (ptr, bitnum)
- char *ptr;
- unsigned bitnum;
- {
- unsigned bitpos, bytepos;
-
- bytepos = bitnum >> 3;
- bitpos = bitnum & 0x07;
- *(ptr+bytepos) &= ~(bitarray[bitpos]);
- }
-
- /*TestBit - test the 'bitnum'th bit offset from 'ptr'.
- Return a 0 if the bit is cleared, and a 1 if set.*/
- char testbit (ptr, bitnum)
- char *ptr;
- unsigned bitnum;
- {
- unsigned bitpos, bytepos;
-
- bytepos = bitnum >> 3;
- bitpos = bitnum & 0x07;
- if (*(ptr+bytepos) & bitarray[bitpos])
- return(1);
- return(0);
- }
-
- /*HexDump - display in 1's and 0's form 'nobytes' number of bytes
- starting from 'ptr'*/
- void hexdump (ptr, nobytes)
- char *ptr;
- unsigned nobytes;
- {
- int nobits;
-
- for (; nobytes;) {
- for (nobits = 0; nobits < 8; nobits++) {
- if (testbit (ptr,nobits))
- printf ("1");
- else
- printf ("0");
- }
- printf (" ");
- if (!(--nobytes % 8))
- printf ("\n");
- ptr++;
- }
- }