3
0
mirror of https://github.com/42wim/matterbridge.git synced 2025-03-06 14:31:09 +01:00
2019-06-16 23:33:25 +02:00

12 lines
224 B
Go

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
}