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

20 lines
567 B
Go
Raw Normal View History

2021-11-12 12:28:10 +01:00
//go:build (darwin || freebsd || openbsd || netbsd || dragonfly) && !appengine
2019-12-22 18:20:45 +01:00
// +build darwin freebsd openbsd netbsd dragonfly
// +build !appengine
package isatty
2020-05-24 18:42:01 +02:00
import "golang.org/x/sys/unix"
2019-12-22 18:20:45 +01:00
// IsTerminal return true if the file descriptor is terminal.
func IsTerminal(fd uintptr) bool {
2020-05-24 18:42:01 +02:00
_, err := unix.IoctlGetTermios(int(fd), unix.TIOCGETA)
return err == nil
2019-12-22 18:20:45 +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
}