Codebase list golang-github-vbatts-go-mtree / 646a2674-a44a-4496-a88c-2c4f2e843724/main stat_windows.go
646a2674-a44a-4496-a88c-2c4f2e843724/main

Tree @646a2674-a44a-4496-a88c-2c4f2e843724/main (Download .tar.gz)

stat_windows.go @646a2674-a44a-4496-a88c-2c4f2e843724/main

d1a96ae
1cf0881
 
 
 
 
 
 
 
 
 
 
 
//go:build windows
// +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
}