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

Method LoadFile

src/xml/tinyxml2.cpp:1671–1681  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1669
1670
1671XMLError XMLDocument::LoadFile( const char* filename ) {
1672 Clear();
1673 FILE* fp = callfopen( filename, "rb" );
1674 if ( !fp ) {
1675 SetError( XML_ERROR_FILE_NOT_FOUND, filename, 0 );
1676 return _errorID;
1677 }
1678 LoadFile( fp );
1679 fclose( fp );
1680 return _errorID;
1681}
1682
1683
1684XMLError XMLDocument::LoadFile( FILE* fp ) {

Callers 5

TeXSymbolParserMethod · 0.80
initMethod · 0.80
parseFontDescriptionsMethod · 0.80
parseSymbolMappingsMethod · 0.80

Calls 1

callfopenFunction · 0.85

Tested by

no test coverage detected