2021-08-15 20:21:32 +00:00
|
|
|
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2022-04-15 09:00:55 +00:00
|
|
|
double atof(const char* ascii)
|
2021-08-15 20:21:32 +00:00
|
|
|
{
|
2022-04-15 09:00:55 +00:00
|
|
|
return strtod(ascii, 0);
|
2021-08-15 20:21:32 +00:00
|
|
|
}
|