4.1cBSD/usr/src/ucb/ingres/source/gutil/tTf.c

Compare this file to the similar file:
Show the results in this format:

# include	<sccs.h>

SCCSID(@(#)tTf.c	7.1	2/5/81)

tTf(m, n)
{
	extern char	tTany;
	extern short	*tT;

	if (!tTany)
		return (0);
	if (n < 0)
		return (tT[m]);
	else
		return ((tT[m] >> n) & 01);
}