1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2024-11-30 20:15:39 +00:00
go-mtree/vendor/github.com/mattn/go-isatty/isatty_tcgets.go
Vincent Batts 4fdc2fd3ed
go*: update modules
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2024-06-11 16:52:57 +00:00

20 lines
536 B
Go

//go:build (linux || aix || zos) && !appengine && !tinygo
// +build linux aix zos
// +build !appengine
// +build !tinygo
package isatty
import "golang.org/x/sys/unix"
// IsTerminal return true if the file descriptor is terminal.
func IsTerminal(fd uintptr) bool {
_, err := unix.IoctlGetTermios(int(fd), unix.TCGETS)
return err == nil
}
// 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
}