shithub: plan9front

ref: 89a83271f43c98cc58b1ea7493e6a66cd16abf36
dir: /sys/src/libc/9sys/nulldir.c/

View raw version
#include <u.h>
#include <libc.h>

void
nulldir(Dir *d)
{
	memset(d, ~0, sizeof(Dir));
	d->name = d->uid = d->gid = d->muid = "";
}