2024-04-28 13:08:41 +02:00
|
|
|
//go:build (darwin || freebsd || openbsd || netbsd || dragonfly || hurd) && !appengine && !tinygo
|
2023-01-14 20:50:39 +01:00
|
|
|
// +build darwin freebsd openbsd netbsd dragonfly hurd
|
2019-12-22 18:20:45 +01:00
|
|
|
// +build !appengine
|
2024-04-28 13:08:41 +02:00
|
|
|
// +build !tinygo
|
2019-12-22 18:20:45 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|