1
0
mirror of https://github.com/beego/bee.git synced 2024-06-02 11:03:27 +00:00
bee/vendor/github.com/mattn/go-isatty/isatty_bsd.go
2017-03-19 23:48:59 +01:00

19 lines
415 B
Go

// +build darwin freebsd openbsd netbsd
// +build !appengine
package isatty
import (
"syscall"
"unsafe"
)
const ioctlReadTermios = syscall.TIOCGETA
// IsTerminal return true if the file descriptor is terminal.
func IsTerminal(fd uintptr) bool {
var termios syscall.Termios
_, _, err := syscall.Syscall6(syscall.SYS_IOCTL, fd, ioctlReadTermios, uintptr(unsafe.Pointer(&termios)), 0, 0, 0)
return err == 0
}