File: termios_const_solaris.go

package info (click to toggle)
golang-github-pkg-term 1.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 244 kB
  • sloc: makefile: 2
file content (14 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package termios

// #include<termios.h>
import "C"

const (
	TCIFLUSH  = C.TCIFLUSH
	TCOFLUSH  = C.TCOFLUSH
	TCIOFLUSH = C.TCIOFLUSH

	TCSANOW   = C.TCSANOW
	TCSADRAIN = C.TCSADRAIN
	TCSAFLUSH = C.TCSAFLUSH
)