2.11BSD/ingres/source/gutil/iocv.c

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

/*
**  INTEGER OUTPUT CONVERSION
**
**	The integer `i' is converted to ascii using itoa and put
**	into the static buffer `buf'.  The address of `buf' is
**	returned.
*/

char *iocv(i)
int	i;
{
	static char	buf[7];

	itoa(i, buf);
	return (buf);
}