MCPcopy Create free account
hub / github.com/MaxBelkov/visualsyslog / callfopen

Function callfopen

sourcecommon/tinyxml2.cpp:1704–1716  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1702}
1703
1704static FILE* callfopen( const char* filepath, const char* mode )
1705{
1706#if defined(_MSC_VER) && (_MSC_VER >= 1400 ) && (!defined WINCE)
1707 FILE* fp = 0;
1708 errno_t err = fopen_s( &fp, filepath, mode );
1709 if ( err ) {
1710 return 0;
1711 }
1712#else
1713 FILE* fp = fopen( filepath, mode );
1714#endif
1715 return fp;
1716}
1717
1718XMLError XMLDocument::LoadFile( const char* filename )
1719{

Callers 2

LoadFileMethod · 0.85
SaveFileMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected