MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / mymkdir

Function mymkdir

extlibs/minizip/src/miniunz.c:126–140  ·  view source on GitHub ↗
(dirname)

Source from the content-addressed store, hash-verified

124 As I don't know well Unix, I wait feedback for the unix portion */
125
126int mymkdir(dirname)
127 const
128
129char* dirname;
130{
131 int ret = 0;
132#ifdef _WIN32
133 ret = _mkdir(dirname);
134#elif unix
135 ret = mkdir (dirname,0775);
136#elif __APPLE__
137 ret = mkdir (dirname,0775);
138#endif
139 return ret;
140}
141
142int makedir(newdir)
143

Callers 2

makedirFunction · 0.85
do_extract_currentfileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected