Example 1   Template file

	1	#ifndef	lint
	2	static	char	*	$n_$e_rcsid	=
	3		"$Header: $n.$e,v $r $y/$c/$d $h:$m:$s $w Exp $";
	4	
	5	static	char	*	$n_$e_source	=
	6		"$Source$";
	7	#endif
	8	
	9	/*
	10	 *	Header file for "$n".
	11	 *
	12	 * $Log$
	13	 */
	14	
	15	#include	<stdio.h>

Example 1   Token replacement values

	$c	"09"
	$d	"23"
	$e	"h"
	$h	"00"
	$m	"25"
	$n	"program"
	$r	"1.1"
	$s	"44"
	$w	"vogel"
	$y	"90"

Example 1   Generated code

	1	#ifndef	lint
	2	static	char	*	program_h_rcsid	=
	3		"$Header: program.h,v 1.1 90/09/23 00:25:44 vogel Exp $";
	4	
	5	static	char	*	program_h_source	=
	6		"$Source$";
	7	#endif
	8	
	9	/*
	10	 *	Header file for "program".
	11	 *
	12	 * $Log$
	13	 */
	14	
	15	#include	<stdio.h>
