| 196 | // http://austingroupbugs.net/view.php?id=696 |
| 197 | // http://man7.org/linux/man-pages/man3/readdir_r.3.html |
| 198 | while (struct dirent* ent = readdir(dir)) { |
| 199 | if (!(std::strcmp(ent->d_name, ".") == 0 || std::strcmp(ent->d_name, "..") == 0)) { |
| 200 | contents.push_back(ent->d_name); |
| 201 | } |
nothing calls this directly
no outgoing calls
no test coverage detected