1 #include "lib9.h" 2 3 void nulldir(Dir * d)4 nulldir(Dir *d) 5 { 6 memset(d, ~0, sizeof(Dir)); 7 d->name = d->uid = d->gid = d->muid = ""; 8 } 9