10 lines
229 B
Go
10 lines
229 B
Go
package term
|
|
|
|
import "syscall"
|
|
|
|
const ioctlReadTermios = syscall.TIOCGETA
|
|
|
|
// Termios functions describe a general terminal interface that is
|
|
// provided to control asynchronous communications ports.
|
|
type Termios syscall.Termios
|