/*
Projekt TEAM

Demo project for a small team

Version 1.0 / 2002.02.01
Autor: pstrainer@gmx.net

The project consists of 3 parts, each of which can
be developed and tested individually: 
-> team_main
-> team_a
-> team_b
This module (team_z) contains standard functions for all projects
*/

#include "team.h"

void print_header (char *header) {
	#ifdef _DEBUG
	printf("Debug version ");
	#else
	printf("Release version ");
	#endif
	printf("of program %s\n\n",header);
}

void print_trailer (void) {
	#ifdef _DEBUG
	printf("\nPress any key to continue ");
	_getch();
	#endif
}

/* ========== eof ========== */

    Source: geocities.com/pstrainer/entwicklung/c

               ( geocities.com/pstrainer/entwicklung)                   ( geocities.com/pstrainer)