2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-10 13:10:26 +00:00
cointop/vendor/github.com/mattn/go-isatty/isatty_tcgets.go

20 lines
507 B
Go
Raw Normal View History

2021-09-30 06:17:58 +00:00
//go:build (linux || aix || zos) && !appengine
// +build linux aix zos
2019-02-26 06:34:53 +00:00
// +build !appengine
2018-04-26 08:07:36 +00:00
package isatty
2019-02-26 06:34:53 +00:00
import "golang.org/x/sys/unix"
2018-04-26 08:07:36 +00:00
// IsTerminal return true if the file descriptor is terminal.
func IsTerminal(fd uintptr) bool {
2019-02-26 06:34:53 +00:00
_, 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
2018-04-26 08:07:36 +00:00
}