I am trying to use an open source C library in my Android project. This library uses the atof() function. I know that atof() is a function defined
atof()
From stdlib.h in the Android source;
static __inline__ double atof(const char *nptr) { return (strtod(nptr, NULL)); }
atof is in other words not a library function, it's an inline function that calls strtod.
atof
strtod
If you need to call through loading a library, just use strtod instead.