home *** CD-ROM | disk | FTP | other *** search
- /*Program 1_1c - Simple bit manipulation functions
- by Stephen R. Davis, '87
-
- This is simply the test code for the bit routines
- defined in Program 1_1b. This is identical to main()
- defined in Program 1_1a.
- */
-
- #include <stdio.h>
- #include "mylib.h"
-
- /*Main - test the above routines*/
- main ()
- {
- char buffer[16];
- int i,bit;
-
- for (i = 0; i < 16; i++) /*test SetBit*/
- buffer[i] = 0;
- for (;;) {
- hexdump (buffer,16);
- printf ("\nenter the number of bit to set (>=128 quits):");
- scanf ("%d",&bit);
- printf ("\n");
- if (bit >= 128)
- break;
- setbit (buffer,bit);
- }
-
- printf ("\n\n");
-
- for (i = 0; i < 16; i++) /*now test ClrBit*/
- buffer[i] = -1;
- for (;;) {
- hexdump (buffer,16);
- printf ("\nenter the number of bit to clear (>=128 quits):");
- scanf ("%d",&bit);
- printf ("\n");
- if (bit >= 128)
- break;
- clrbit (buffer,bit);
- }
- printf ("\n\nThat's all folks!");
- }