home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff319.lzh / CNewsSrc / cnews.orig.lzh / rna / lib / itoa.c < prev    next >
Text File  |  1989-06-27  |  86b  |  10 lines

  1. char *
  2. itoa(i)
  3. int i;
  4. {
  5.     static char buf[30];
  6.  
  7.     sprintf(buf, "%d", i);
  8.     return buf;
  9. }
  10.