blob: 04748b8515f16d576c9d791a93d4483ec330dea5 [file] [log] [blame]
Abhay Kumar40252eb2025-10-13 13:25:53 +00001// +build linux aix zos
khenaidoo26721882021-08-11 17:42:52 -04002// +build !js
3
4package logrus
5
6import "golang.org/x/sys/unix"
7
8const ioctlReadTermios = unix.TCGETS
9
10func isTerminal(fd int) bool {
11 _, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
12 return err == nil
13}