File:  [CSRG BSD Unix] / 42BSD / ingres / source / gutil / iocv.c
Revision 1.1: download - view: text, annotated - select for diffs
Tue Apr 24 16:12:53 2018 UTC (8 years, 1 month ago) by root
CVS tags: MAIN, HEAD
Initial revision

# include	<sccs.h>

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

/*
**  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);
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.