home *** CD-ROM | disk | FTP | other *** search
- /* Program 3_1 -- Pretty print for the remaining listings
- by Stephen R. Davis, '87
-
- Prints standard input to standard output after adding line numbers,
- truncating to 80 chars, etc. Used to generate listings in this
- book.
- */
-
- #include <stdio.h>
- #define min(x,y) (x<y) ? x:y
-
- /*prototype definitions*/
- int main ();
- void nesting (unsigned *, char *);
-
- /*Main - read from STDIN one line at a time. Reprint each
- line to STDOUT after adding line numbers and nesting
- levels*/
- main ()
- {
- char string[256];
- unsigned linenum,level,newlevel;
-
- linenum = 0;
- newlevel = 0;
- while (gets(string)) {
- level = newlevel;
- nesting(&newlevel,string);
- string[70] = '\0';
- printf ("%3u[%2u]: ",++linenum,min(level,newlevel));
- puts (string);
- };
-
- while (linenum++ % 66) /*<-- if printer has no form feed*/
- printf ("\n");
- /*printf ("\f\n");*/ /*<-- if printer does have ff*/
- }
-
- /*Nesting - search the given string for "{" and "}". Increment
- nesting level on "{" and decrement on"}".*/
- void nesting (levelptr,stringptr)
- unsigned *levelptr;
- char *stringptr;
- {
- do {
- if (*stringptr == '{')
- *levelptr += 1;
- if (*stringptr == '}')
- *levelptr -= 1;
- } while (*stringptr++);
- }