Exemple #1
0
func closeDir(dir *C.DIR) {
	if dir != nil {
		C.closedir(dir)
	}
}
Exemple #2
0
func (p *Dir) Close() {
	C.closedir((*C.DIR)(p))
}