/************************************************************************
*                                                                       *
*                      Template File for C Headers                      *
*                                                                       *
************************************************************************/

/*  Author:   John Zaitseff <J.Zaitseff@unsw.edu.au>
    Date:     26th February, 2003
    Version:  1.5

    This file is meant to be used as a template (in other words, a starting
    point) for any headers needed by C language programs that you write.
    Modify it to suit your needs.

    Ideally, every file should be well-documented, with an over-all
    description included in the initial comments.
*/


#ifndef __TEMPLATE_H__
#define __TEMPLATE_H__

/*  The above two lines (and the last one in this file) guard against this
    header file being included two (or more) times by accident. */


/*  ---------------------------------------------------------------------
    Included files
*/

#include <stdlib.h>


/*  ---------------------------------------------------------------------
    Type definitions
*/


/*  ---------------------------------------------------------------------
    Constant declarations
*/

#define FALSE (0)				/* C value for FALSE */
#define TRUE  (! FALSE)				/* C value for TRUE */


/*  ---------------------------------------------------------------------
    Function prototypes
*/

int main (void);
    /* Main program entry point with no parameters */


#endif /* __TEMPLATE_H__ */

