home *** CD-ROM | disk | FTP | other *** search
/ Aminet 10 / aminetcdnumber101996.iso / Aminet / dev / c / vbcc.lha / vbcc / machines / amiga68k / libsrc / math / atof.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-11  |  101 b   |  8 lines

  1. #include <stdio.h>
  2.  
  3. double atof(const char *nptr)
  4. { double a;
  5.   sscanf(nptr,"%lf",&a);
  6.   return a;
  7. }
  8.