ref: 41f9e6315b75a8ea422d1c0dbf0ed1999b80a7eb
dir: /libnpe/opendir.c/
#include <dirent.h> #include "_dirent.h" DIR * opendir(char *name) { Dir *dir; DIR *d; int fd; dir = nil; d = nil; if((fd = open(name, OREAD|OCEXEC)) >= 0 && (dir = dirfstat(fd)) != nil && (dir->qid.type & QTDIR) != 0 && (d = calloc(1, sizeof(*d))) != nil){ d->fd = fd; } free(dir); if(d == nil) close(fd); return d; }