MCPcopy Create free account
hub / github.com/boostorg/filesystem / readdir_r_impl

Function readdir_r_impl

src/directory.cpp:352–360  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

350#else // !defined(BOOST_FILESYSTEM_USE_READDIR_R)
351
352int readdir_r_impl(dir_itr_imp& imp, struct dirent** result)
353{
354 return ::readdir_r
355 (
356 static_cast< DIR* >(imp.handle),
357 static_cast< struct dirent* >(get_dir_itr_imp_extra_data(&imp)),
358 result
359 );
360}
361
362int readdir_select_impl(dir_itr_imp& imp, struct dirent** result);
363

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected