Mercurial > yakumo_izuru > aya
comparison vendor/github.com/sirupsen/logrus/terminal_check_solaris.go @ 66:787b5ee0289d draft
Use vendored modules
Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
author | yakumo.izuru |
---|---|
date | Sun, 23 Jul 2023 13:18:53 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
65:6d985efa0f7a | 66:787b5ee0289d |
---|---|
1 package logrus | |
2 | |
3 import ( | |
4 "golang.org/x/sys/unix" | |
5 ) | |
6 | |
7 // IsTerminal returns true if the given file descriptor is a terminal. | |
8 func isTerminal(fd int) bool { | |
9 _, err := unix.IoctlGetTermio(fd, unix.TCGETA) | |
10 return err == nil | |
11 } |