home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume12 / cnews / part01 / rna / lib / itoa.c next >
Encoding:
Text File  |  1987-10-19  |  86 b   |  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.