|
|
1.1 ! root 1: # include <sccs.h> ! 2: ! 3: SCCSID(@(#)iocv.c 7.1 2/5/81) ! 4: ! 5: /* ! 6: ** INTEGER OUTPUT CONVERSION ! 7: ** ! 8: ** The integer `i' is converted to ascii using itoa and put ! 9: ** into the static buffer `buf'. The address of `buf' is ! 10: ** returned. ! 11: */ ! 12: ! 13: char * ! 14: iocv(i) ! 15: int i; ! 16: { ! 17: static char buf[7]; ! 18: ! 19: itoa(i, buf); ! 20: return (buf); ! 21: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.