1: /*
   2: **  INTEGER OUTPUT CONVERSION
   3: **
   4: **	The integer `i' is converted to ascii using itoa and put
   5: **	into the static buffer `buf'.  The address of `buf' is
   6: **	returned.
   7: */
   8: 
   9: char *iocv(i)
  10: int i;
  11: {
  12:     static char buf[7];
  13: 
  14:     itoa(i, buf);
  15:     return (buf);
  16: }
Last modified: 1995-02-09
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 1622
Valid CSS Valid XHTML 1.0 Strict