Codebase list golang-github-vbatts-go-mtree / upstream/0.5.0+git20210625.1.e8d42c3 stat_windows.go
upstream/0.5.0+git20210625.1.e8d42c3

Tree @upstream/0.5.0+git20210625.1.e8d42c3 (Download .tar.gz)

stat_windows.go @upstream/0.5.0+git20210625.1.e8d42c3raw · history · blame

// +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
}