whatcanGOwrong

This commit is contained in:
2024-09-19 21:38:24 -04:00
commit d0ae4d841d
17908 changed files with 4096831 additions and 0 deletions
@@ -0,0 +1,26 @@
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