Home | History | Annotate | Download | only in larn

Lines Matching defs:CBREAK

11  * scbr()		Function to set cbreak -echo for the terminal
12 * sncbr() Function to set -cbreak echo for the terminal
111 #define CBREAK RAW /* V7 has no CBREAK */
114 #define doraw(_a) (_a.sg_flags |= CBREAK,_a.sg_flags &= ~ECHO)
115 #define unraw(_a) (_a.sg_flags &= ~CBREAK,_a.sg_flags |= ECHO)
150 scbr(); /* system("stty cbreak -echo"); */
163 sncbr(); /* system("stty -cbreak echo"); */
182 * scbr() Function to set cbreak -echo for the terminal
184 * like: system("stty cbreak -echo")
195 * sncbr() Function to set -cbreak echo for the terminal
197 * like: system("stty -cbreak echo")