Codebase list golang-github-vbatts-go-mtree / ab884990-ac0e-4ba9-a21f-a783d19f3abd/main stat_windows.go
ab884990-ac0e-4ba9-a21f-a783d19f3abd/main

Tree @ab884990-ac0e-4ba9-a21f-a783d19f3abd/main (Download .tar.gz)

stat_windows.go @ab884990-ac0e-4ba9-a21f-a783d19f3abd/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
}