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

  1. /* Program 3_1 -- Pretty print for the remaining listings
  2.     by Stephen R. Davis, '87
  3.  
  4.   Prints standard input to standard output after adding line numbers,
  5.   truncating to 80 chars, etc.  Used to generate listings in this
  6.   book.
  7. */
  8.  
  9. #include <stdio.h>
  10. #define min(x,y) (x<y) ? x:y
  11.  
  12. /*prototype definitions*/
  13. int main ();
  14. void nesting (unsigned *, char *);
  15.  
  16. /*Main - read from STDIN one line at a time.  Reprint each
  17.      line to STDOUT after adding line numbers and nesting
  18.      levels*/
  19. main ()
  20. {
  21.     char string[256];
  22.     unsigned linenum,level,newlevel;
  23.  
  24.     linenum = 0;
  25.     newlevel = 0;
  26.     while (gets(string)) {
  27.          level = newlevel;
  28.          nesting(&newlevel,string);
  29.          string[70] = '\0';
  30.          printf ("%3u[%2u]: ",++linenum,min(level,newlevel));
  31.          puts (string);
  32.     };
  33.  
  34.     while (linenum++ % 66)  /*<-- if printer has no form feed*/
  35.          printf ("\n");
  36.     /*printf ("\f\n");*/    /*<-- if printer does have ff*/
  37. }
  38.  
  39. /*Nesting - search the given string for "{" and "}".  Increment
  40.             nesting level on "{" and decrement on"}".*/
  41. void nesting (levelptr,stringptr)
  42.     unsigned *levelptr;
  43.     char *stringptr;
  44. {
  45.     do {
  46.          if (*stringptr == '{')
  47.               *levelptr += 1;
  48.          if (*stringptr == '}')
  49.               *levelptr -= 1;
  50.     } while (*stringptr++);
  51. }
  52.