Codebase list golang-github-vbatts-go-mtree / ba6ae86e-ba9c-46db-9248-ebba3da2645f/upstream stat_windows.go
ba6ae86e-ba9c-46db-9248-ebba3da2645f/upstream

Tree @ba6ae86e-ba9c-46db-9248-ebba3da2645f/upstream (Download .tar.gz)

stat_windows.go @ba6ae86e-ba9c-46db-9248-ebba3da2645f/upstreamraw · 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
}