...

Source file src/github.com/mattn/go-tty/tty_linux.go

Documentation: github.com/mattn/go-tty

     1  // +build linux
     2  
     3  package tty
     4  
     5  const (
     6  	ioctlReadTermios  = 0x5401 // syscall.TCGETS
     7  	ioctlWriteTermios = 0x5402 // syscall.TCSETS
     8  )
     9  

View as plain text