mirror of
https://github.com/cahirwpz/libnix.git
synced 2025-12-08 14:58:56 +00:00
8 lines
101 B
C
8 lines
101 B
C
#include <stdio.h>
|
|
|
|
double atof(const char *nptr)
|
|
{ double a;
|
|
sscanf(nptr,"%lf",&a);
|
|
return a;
|
|
}
|