home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_10 / 9n10090a < prev    next >
Text File  |  1979-12-31  |  320b  |  23 lines

  1. /*
  2.     listing 3 
  3.  
  4. */
  5.  
  6.  
  7. case INT:
  8.  
  9.   for (i=0, integer = *((int *) position_ptr); 
  10.         i < transaction_size; i++, 
  11.         position_ptr++, 
  12.         integer = *((int *) position_ptr) ) {
  13.  
  14.      if (integer == *( (int *) user_value) ) {  
  15.         found = ON;
  16.         lookup_print(&tran_start[i]);
  17.      }
  18.  
  19.   }
  20.  
  21. break;
  22.  
  23.