MCPcopy Create free account
hub / github.com/Kitware/VTK / pj_atof

Function pj_atof

ThirdParty/libproj/vtklibproj/src/strtod.cpp:62–65  ·  view source on GitHub ↗

* Converts ASCII string to floating point number. * * This function converts the initial portion of the string pointed to * by nptr to double floating point representation. The behavior is the * same as * * pj_strtod(nptr, (char **)NULL); * * This function does the same as standard atof(3), but does not take * locale in account. That means, the decimal delimiter is always '.' * (decima

Source from the content-addressed store, hash-verified

60 * @return Converted value.
61 */
62double pj_atof( const char* nptr )
63{
64 return pj_strtod(nptr, nullptr);
65}
66
67
68/************************************************************************/

Callers 5

pj_paramFunction · 0.85
ellps_sizeFunction · 0.85
ellps_shapeFunction · 0.85
pj_datum_setFunction · 0.85

Calls 1

pj_strtodFunction · 0.85

Tested by

no test coverage detected