matterbridge/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
2017-02-18 14:00:46 -08:00
// +build !appengine
// +build !tinygo
2017-02-18 14:00:46 -08:00
package isatty
2020-05-23 15:06:21 -07:00
import "golang.org/x/sys/unix"
2017-02-18 14:00:46 -08:00
// IsTerminal return true if the file descriptor is terminal.
func IsTerminal(fd uintptr) bool {
2020-05-23 15:06:21 -07:00
_, err := unix.IoctlGetTermios(int(fd), unix.TIOCGETA)
return err == nil
2017-02-18 14:00:46 -08:00
}
2019-03-02 04:04:28 -08: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
}