home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c072 / 1.ddi / PRG1_1C.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-19  |  1.1 KB  |  45 lines

  1. /*Program 1_1c - Simple bit manipulation functions
  2.     by Stephen R. Davis, '87
  3.  
  4.   This is simply the test code for the bit routines
  5.   defined in Program 1_1b.  This is identical to main()
  6.   defined in Program 1_1a.
  7. */
  8.  
  9. #include <stdio.h>
  10. #include "mylib.h"
  11.  
  12. /*Main - test the above routines*/
  13. main ()
  14. {
  15.     char buffer[16];
  16.     int i,bit;
  17.  
  18.     for (i = 0; i < 16; i++)       /*test SetBit*/
  19.          buffer[i] = 0;
  20.     for (;;) {
  21.          hexdump (buffer,16);
  22.          printf ("\nenter the number of bit to set (>=128 quits):");
  23.          scanf ("%d",&bit);
  24.          printf ("\n");
  25.          if (bit >= 128)
  26.               break;
  27.          setbit (buffer,bit);
  28.     }
  29.  
  30.     printf ("\n\n");
  31.  
  32.     for (i = 0; i < 16; i++)       /*now test ClrBit*/
  33.          buffer[i] = -1;
  34.     for (;;) {
  35.          hexdump (buffer,16);
  36.          printf ("\nenter the number of bit to clear (>=128 quits):");
  37.          scanf ("%d",&bit);
  38.          printf ("\n");
  39.          if (bit >= 128)
  40.               break;
  41.          clrbit (buffer,bit);
  42.     }
  43.     printf ("\n\nThat's all folks!");
  44. }
  45.