Codebase list golang-github-vbatts-go-mtree / 5b87f407-68e8-43dd-a59f-5ecc3b3e85b8/main stat_windows.go
5b87f407-68e8-43dd-a59f-5ecc3b3e85b8/main

Tree @5b87f407-68e8-43dd-a59f-5ecc3b3e85b8/main (Download .tar.gz)

stat_windows.go @5b87f407-68e8-43dd-a59f-5ecc3b3e85b8/mainraw · 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
}