1: # include   <sccs.h>
   2: # include   <useful.h>
   3: 
   4: SCCSID(@(#)iocv.c	8.2	2/8/85)
   5: 
   6: /*
   7: **  INTEGER OUTPUT CONVERSION
   8: **
   9: **	The integer `i' is converted to ascii using itoa and put
  10: **	into the static buffer `buf'.  The address of `buf' is
  11: **	returned.
  12: */
  13: 
  14: char *
  15: iocv(i)
  16: int i;
  17: {
  18:     static char buf[CHAR_SZ];
  19: 
  20:     itoa(i, buf);
  21:     return (buf);
  22: }

Defined functions

iocv defined in line 4; never used
Last modified: 1986-04-17
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 657
Valid CSS Valid XHTML 1.0 Strict