// $Id: CHEAD.TXT 1.2 1997/11/18 04:24:59 ska Exp $

Description of the standard header of CLib source files:

// The legal notice is prepended automatically in distributions
/* $RCSfile: CHEAD.TXT $					// RCS information
   $Locker:  $	$Name:  $	$State: Exp $		// RCS information

	>>prototype<<				// placeholder for the function/variable
									prototype(s). without 'const', 'extern'.

	>>description<<				// what the function does, to make it clear
									without looking at the source at all
								// compatibly problems, known bugs & weaknesses

	Input:
		<none>					// conditions the input parameters must
									fullfill
								// if necessary, divided by function

	Return:
		<none>					// When will be returned what
								// if necessary, divided by function

	Note:
		<none>					// additional notes, possibly interessting
									for revisors

	Conforms to:
		<none>					// ANSI, POSIX, DOS

	See also:
								// related functions & variables
	Target compilers:
		Any C compiler			// what type of compiler should be able to
									compile this source, "Any" means: any
									ANSI C compiler

	Origin:
		1997/10/20 Steffen Kaiser (ska)	// who donated the source & when

	Revised by:
		<none>					// who revised the source & when

	File Revision:				// automatically inserted in distributions
									to keep track of which file version was
									revised

   $Log: CHEAD.TXT $
   Revision 1.2  1997/11/18 04:24:59  ska
   Auto Check-in

   Revision 1.1  1997/10/27 12:27:37  ska
   Auto Check-in
						// RCS log messages (stripped in distributions)
*/

#include <_clib.h>			/* standard include, must be the first! */

#ifdef RCS_Version				// can be used to put a RCS ID into the .OBJ
static char const rcsid[] = 	// file to make the CLib and compiled
	"$Id: CHEAD.TXT 1.2 1997/11/18 04:24:59 ska Exp $";						// executables transparent what file revisions
#endif							// are used

