Codebase list golang-github-vbatts-go-mtree / a0ba5bd7-db7a-45cd-8119-274a2910f3d1/main stat_windows.go
a0ba5bd7-db7a-45cd-8119-274a2910f3d1/main

Tree @a0ba5bd7-db7a-45cd-8119-274a2910f3d1/main (Download .tar.gz)

stat_windows.go @a0ba5bd7-db7a-45cd-8119-274a2910f3d1/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
}