ack/lang/cem/ctest/ctprof/procentry.c
1987-03-10 01:26:51 +00:00

28 lines
521 B
C

/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*
*/
char rcs_id[] = "$Header$" ;
static int level = 0 ;
int procentry(name) char *name ; {
register int count ;
count=level++ ;
while ( count-- ) {
printf(" ") ;
}
printf("Entering %s\n",name) ;
}
int procexit(name) char *name ; {
register int count ;
count= --level ;
while ( count-- ) {
printf(" ") ;
}
printf("Leaving %s\n",name) ;
}