home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1991 / 08 / vogel / examples next >
Text File  |  1991-04-01  |  778b  |  49 lines

  1. Example 1   Template file
  2.  
  3.     1    #ifndef    lint
  4.     2    static    char    *    $n_$e_rcsid    =
  5.     3        "$Header: $n.$e,v $r $y/$c/$d $h:$m:$s $w Exp $";
  6.     4    
  7.     5    static    char    *    $n_$e_source    =
  8.     6        "$Source$";
  9.     7    #endif
  10.     8    
  11.     9    /*
  12.     10     *    Header file for "$n".
  13.     11     *
  14.     12     * $Log$
  15.     13     */
  16.     14    
  17.     15    #include    <stdio.h>
  18.  
  19. Example 1   Token replacement values
  20.  
  21.     $c    "09"
  22.     $d    "23"
  23.     $e    "h"
  24.     $h    "00"
  25.     $m    "25"
  26.     $n    "program"
  27.     $r    "1.1"
  28.     $s    "44"
  29.     $w    "vogel"
  30.     $y    "90"
  31.  
  32. Example 1   Generated code
  33.  
  34.     1    #ifndef    lint
  35.     2    static    char    *    program_h_rcsid    =
  36.     3        "$Header: program.h,v 1.1 90/09/23 00:25:44 vogel Exp $";
  37.     4    
  38.     5    static    char    *    program_h_source    =
  39.     6        "$Source$";
  40.     7    #endif
  41.     8    
  42.     9    /*
  43.     10     *    Header file for "program".
  44.     11     *
  45.     12     * $Log$
  46.     13     */
  47.     14    
  48.     15    #include    <stdio.h>
  49.