示例#1
0
// UseEnvironment specifies whether the LINES and COLUMNS environmental
// variables should be used or not
func UseEnvironment(use bool) {
	C.use_env(C.bool(use))
}
示例#2
0
文件: curses.go 项目: zyxar/gocurse
func UseEnv(b bool) {
	C.use_env(bool2cint(b))
}