func closeDir(dir *C.DIR) { if dir != nil { C.closedir(dir) } }
func (p *Dir) Close() { C.closedir((*C.DIR)(p)) }