ARO-RP/vendor/github.com/sirupsen/logrus/terminal_check_solaris.go

12 строки
224 B
Go
Исходник Обычный вид История

2019-10-16 06:29:17 +03:00
package logrus
import (
"golang.org/x/sys/unix"
)
// IsTerminal returns true if the given file descriptor is a terminal.
func isTerminal(fd int) bool {
_, err := unix.IoctlGetTermio(fd, unix.TCGETA)
return err == nil
}