MCPcopy Create free account
hub / github.com/assaultcube/AC / readdir_r_

Function readdir_r_

source/src/stream.cpp:282–292  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280
281#if !defined(WIN32)
282int readdir_r_(DIR *d, struct dirent *b, struct dirent **de)
283{
284 #ifdef __USE_POSIX
285 #pragma GCC diagnostic push
286 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
287 #endif
288 return readdir_r(d, b, de);
289 #ifdef __USE_POSIX
290 #pragma GCC diagnostic pop
291 #endif
292}
293#endif
294
295bool listsubdir(const char *dir, vector<char *> &subdirs)

Callers 2

listsubdirFunction · 0.85
listdirFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected