Home | Info | Community | Development | myReactOS | Contact Us
00001 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */ 00002 #include <precomp.h> 00003 00004 /* 00005 * @implemented 00006 */ 00007 double 00008 atof(const char *ascii) 00009 { 00010 return strtod(ascii, 0); 00011 }