You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/vendor/github.com/mattn/go-isatty/isatty_bsd.go

20 lines
567 B
Go

//go:build (darwin || freebsd || openbsd || netbsd || dragonfly) && !appengine
6 years ago
// +build darwin freebsd openbsd netbsd dragonfly
// +build !appengine
package isatty
4 years ago
import "golang.org/x/sys/unix"
6 years ago
// IsTerminal return true if the file descriptor is terminal.
func IsTerminal(fd uintptr) bool {
4 years ago
_, err := unix.IoctlGetTermios(int(fd), unix.TIOCGETA)
return err == nil
6 years ago
}
5 years ago
// 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
}