MCPcopy Create free account
hub / github.com/Genivia/ugrep / fopen_s

Function fopen_s

lib/pattern.cpp:86–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84
85#if (defined(__WIN32__) || defined(_WIN32) || defined(WIN32) || defined(_WIN64) || defined(__BORLANDC__)) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__MINGW64__)
86inline int fopen_s(FILE **file, const char *name, const char *mode) { return ::fopen_s(file, name, mode); }
87#else
88inline int fopen_s(FILE **file, const char *name, const char *mode) { return (*file = ::fopen(name, mode)) ? 0 : errno; }
89#endif

Callers 4

gencode_dfaMethod · 0.85
graph_dfaMethod · 0.85
export_codeMethod · 0.85
REFLEX_DBGOUT_Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected