summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/isatty_solaris.go
diff options
context:
space:
mode:
Diffstat (limited to 'dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/isatty_solaris.go')
-rw-r--r--dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/isatty_solaris.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/isatty_solaris.go b/dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/isatty_solaris.go
new file mode 100644
index 0000000..0c3acf2
--- /dev/null
+++ b/dependencies/pkg/mod/github.com/mattn/go-isatty@v0.0.16/isatty_solaris.go
@@ -0,0 +1,21 @@
+//go:build solaris && !appengine
+// +build solaris,!appengine
+
+package isatty
+
+import (
+ "golang.org/x/sys/unix"
+)
+
+// IsTerminal returns true if the given file descriptor is a terminal.
+// see: https://src.illumos.org/source/xref/illumos-gate/usr/src/lib/libc/port/gen/isatty.c
+func IsTerminal(fd uintptr) bool {
+ _, err := unix.IoctlGetTermio(int(fd), unix.TCGETA)
+ 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
+}