Files
LearnGO/go/pkg/mod/github.com/go-delve/liner@v1.2.3-0.20231231155935-4726ab1d7f62/input_solaris.go
T
2024-09-19 21:38:24 -04:00

27 lines
368 B
Go

package liner
import (
"golang.org/x/sys/unix"
)
const (
getTermios = unix.TCGETS
setTermios = unix.TCSETS
)
const (
icrnl = unix.ICRNL
inpck = unix.INPCK
istrip = unix.ISTRIP
ixon = unix.IXON
opost = unix.OPOST
cs8 = unix.CS8
isig = unix.ISIG
icanon = unix.ICANON
iexten = unix.IEXTEN
)
type termios unix.Termios
const cursorColumn = false