Codebase list golang-github-vbatts-go-mtree / 8feeab77-98f0-4ffb-a3fc-f435f67cd7f2/main stat_windows.go
8feeab77-98f0-4ffb-a3fc-f435f67cd7f2/main

Tree @8feeab77-98f0-4ffb-a3fc-f435f67cd7f2/main (Download .tar.gz)

stat_windows.go @8feeab77-98f0-4ffb-a3fc-f435f67cd7f2/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
}