URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [insight/] [expect/] [exp_tty.h] - Rev 1778
Go to most recent revision | Compare with Previous | Blame | View Log
/* exp_tty.h - tty support definitions Design and implementation of this program was paid for by U.S. tax dollars. Therefore it is public domain. However, the author and NIST would appreciate credit if this program or parts of it are used. */ #ifndef __EXP_TTY_H__ #define __EXP_TTY_H__ #include "expect_cf.h" extern int exp_dev_tty; extern int exp_ioctled_devtty; extern int exp_stdin_is_tty; extern int exp_stdout_is_tty; void exp_tty_raw(); void exp_tty_echo(); void exp_tty_break(); int exp_tty_raw_noecho(); int exp_israw(); int exp_isecho(); void exp_tty_set(); int exp_tty_set_simple(); int exp_tty_get_simple(); #endif /* __EXP_TTY_H__ */
Go to most recent revision | Compare with Previous | Blame | View Log