|
|
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);
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.