mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 16:34:07 +00:00
18 lines
382 B
C
18 lines
382 B
C
/* sgtty.h - tty control information */
|
|
/* Note reduced contents for CP/M implementation... */
|
|
struct sgttyb{
|
|
char sg_ispeed; /* ignored */
|
|
char sg_ospeed; /* ignored */
|
|
char sg_erase; /* ignored */
|
|
char sg_kill; /* ignored */
|
|
int sg_flags;
|
|
|
|
};
|
|
#define XTABS 0006000
|
|
#define RAW 0000040
|
|
#define CRMOD 0000020
|
|
#define ECHO 0000010
|
|
#define LCASE 0000004
|
|
#define CBREAK 0000002
|
|
|