MCPcopy Create free account
hub / github.com/PolygonTek/BlueshiftEngine / callfopen

Function callfopen

Source/ThirdParty/tinyxml2/tinyxml2.cpp:1932–1946  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1930}
1931
1932static FILE* callfopen( const char* filepath, const char* mode )
1933{
1934 TIXMLASSERT( filepath );
1935 TIXMLASSERT( mode );
1936#if defined(_MSC_VER) && (_MSC_VER >= 1400 ) && (!defined WINCE)
1937 FILE* fp = 0;
1938 errno_t err = fopen_s( &fp, filepath, mode );
1939 if ( err ) {
1940 return 0;
1941 }
1942#else
1943 FILE* fp = fopen( filepath, mode );
1944#endif
1945 return fp;
1946}
1947
1948void XMLDocument::DeleteNode( XMLNode* node ) {
1949 TIXMLASSERT( node );

Callers 2

LoadFileMethod · 0.85
SaveFileMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected