MCPcopy Create free account
hub / github.com/ReadyTalk/avian / OPEN

Function OPEN

classpath/java-io.cpp:120–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118
119#ifdef _MSC_VER
120inline int OPEN(string_t path, int mask, int mode)
121{
122 int fd;
123 if (_wsopen_s(&fd, path, mask, _SH_DENYNO, mode) == 0) {
124 return fd;
125 } else {
126 return -1;
127 }
128}
129#endif
130
131inline bool exists(string_t path)

Callers 2

doOpenFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected