MCPcopy Create free account
hub / github.com/NanoMichael/MicroTeX / ToFloat

Method ToFloat

src/xml/tinyxml2.cpp:483–488  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

481
482
483bool XMLUtil::ToFloat( const char* str, float* value ) {
484 if ( TIXML_SSCANF( str, "%f", value ) == 1 ) {
485 return true;
486 }
487 return false;
488}
489
490bool XMLUtil::ToDouble( const char* str, double* value ) {
491 if ( TIXML_SSCANF( str, "%lf", value ) == 1 ) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected