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