home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / unix / gawk.sit / source / missing.d / gcvt.c < prev    next >
Text File  |  1990-07-29  |  129b  |  10 lines

  1. char    *
  2. gcvt(value, digits, buff)
  3. double    value;
  4. int    digits;
  5. char    *buff;
  6. {
  7.     sprintf(buff, "%*g", digits, value);
  8.     return (buff);
  9. }
  10.