home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c100 / 5.ddi / PCTECH.ZIP / TABPROG.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-02-15  |  322 b   |  16 lines

  1. /* Listing 5. Main program for C++ tab expansion */
  2.  
  3. #include "tabexp.hpp"
  4.  
  5. main()
  6. {
  7.   int c;
  8.   /* declare a tab expander using stdin and 8-spaces */
  9.   tabexp te(stdin, 8);
  10.  
  11.   do { /* loop until no more characters in input */
  12.     c = te.get();
  13.     if (c == -1) break; else putc(c, stdout);
  14.   } while(1);
  15. }
  16.