/*
Projekt TEAM
Demo project for a small team
Version 1.0 / 2002.02.01
Autor: pstrainer@gmx.net
This is the developer site team_a
-> team_main (this file)
-> team_a ( <-> exchange with common project)
Compile, link, then run with F5
*/
#include "team.h"
void main (void) {
char myname[]="TEAM_A";
int arga1,arga2,return_a;
print_header(myname);
// Test module team_a
arga1=-123;
arga2=234;
printf(">team_a / main: calling sub_a(%d,%d)\n",arga1,arga2);
return_a=sub_a(arga1,arga2);
printf(">team_a / main: sub_a(%d,%d) returns %d\n",arga1,arga2,return_a);
printf("\n");
print_trailer();
}
/* ========== eof ========== */
               (
geocities.com/pstrainer/entwicklung)                   (
geocities.com/pstrainer)