forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
414 B
29 lines
414 B
10 years ago
|
// +build linux
|
||
|
|
||
|
package liner
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
const (
|
||
|
getTermios = syscall.TCGETS
|
||
|
setTermios = syscall.TCSETS
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
icrnl = syscall.ICRNL
|
||
|
inpck = syscall.INPCK
|
||
|
istrip = syscall.ISTRIP
|
||
|
ixon = syscall.IXON
|
||
|
opost = syscall.OPOST
|
||
|
cs8 = syscall.CS8
|
||
|
isig = syscall.ISIG
|
||
|
icanon = syscall.ICANON
|
||
|
iexten = syscall.IEXTEN
|
||
|
)
|
||
|
|
||
|
type termios struct {
|
||
|
syscall.Termios
|
||
|
}
|
||
8 years ago
|
|
||
|
const cursorColumn = false
|