cheat/vendor/github.com/mattn/go-isatty/isatty_bsd.go

21 lines
609 B
Go
Raw Normal View History

//go:build (darwin || freebsd || openbsd || netbsd || dragonfly || hurd) && !appengine && !tinygo
// +build darwin freebsd openbsd netbsd dragonfly hurd
2019-10-27 17:04:31 +01:00
// +build !appengine
// +build !tinygo
2019-10-27 17:04:31 +01:00
package isatty
import "golang.org/x/sys/unix"
2019-10-27 17:04:31 +01:00
// IsTerminal return true if the file descriptor is terminal.
func IsTerminal(fd uintptr) bool {
_, err := unix.IoctlGetTermios(int(fd), unix.TIOCGETA)
return err == nil
2019-10-27 17:04:31 +01:00
}
// IsCygwinTerminal return true if the file descriptor is a cygwin or msys2
// terminal. This is also always false on this environment.
func IsCygwinTerminal(fd uintptr) bool {
return false
}