1 /* Replacement termio.h file for building GNU Emacs on the Macintosh.
2 Copyright (C) 1999, 2000 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Contributed by Andrew Choi (akochoi@users.sourceforge.net). */
26 typedef unsigned char cc_t
;
27 typedef unsigned short tcflag_t
;
32 tcflag_t c_iflag
; /* input modes */
33 tcflag_t c_oflag
; /* output modes */
34 tcflag_t c_cflag
; /* control modes */
35 tcflag_t c_lflag
; /* local modes */
36 cc_t c_cc
[NCCS
]; /* control chars */
39 /* c_cc subscript names */
47 #define IGNBRK 0x1 /* ignore break condition */
48 #define ICRNL 0x2 /* map CR to NL on input */
49 #define IXON 0x4 /* enable start/stop output control */
52 #define ONLCR 0x1 /* map CR to NL on output */
53 #define TABDLY 0x2 /* horizontal tab delays */
54 #define TAB3 0x4 /* expand tab to spaces */
61 #define ISIG 0x1 /* enable signals */
62 #define ICANON 0x2 /* canonical input (erase and kill processing) */
63 #define ECHO 0x3 /* enable echo */
68 #endif /* _SYS_TERMIO_H */