Codebase list golang-github-vbatts-go-mtree / debian/0.4.2-1 stat_windows.go
debian/0.4.2-1

Tree @debian/0.4.2-1 (Download .tar.gz)

stat_windows.go @debian/0.4.2-1

1cf0881
 
 
 
 
 
 
 
 
 
 
 
// +build windows

package mtree

import "os"

func statIsUID(stat os.FileInfo, uid int) bool {
	return false
}
func statIsGID(stat os.FileInfo, uid int) bool {
	return false
}