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

Method ToInt

src/xml/tinyxml2.cpp:452–457  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

450
451
452bool XMLUtil::ToInt( const char* str, int* value ) {
453 if ( TIXML_SSCANF( str, "%d", value ) == 1 ) {
454 return true;
455 }
456 return false;
457}
458
459bool XMLUtil::ToUnsigned( const char* str, unsigned *value ) {
460 if ( TIXML_SSCANF( str, "%u", value ) == 1 ) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected