aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/peterh/liner/input_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/peterh/liner/input_linux.go')
-rw-r--r--vendor/github.com/peterh/liner/input_linux.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/vendor/github.com/peterh/liner/input_linux.go b/vendor/github.com/peterh/liner/input_linux.go
new file mode 100644
index 000000000..56ed185fa
--- /dev/null
+++ b/vendor/github.com/peterh/liner/input_linux.go
@@ -0,0 +1,28 @@
+// +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
+}
+
+const cursorColumn = false