Deleted Added
full compact
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Christos Zoulas of Cornell University.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 131 unchanged lines hidden (view full) ---

140 */
141#if defined(convex) || defined(__convex__)
142# if defined(IEXTEN) && IEXTEN != 0
143# undef IEXTEN
144# define IEXTEN 0
145# endif /* IEXTEN != 0 */
146#endif /* convex || __convex__ */
147
148
149
150#ifndef _POSIX_VDISABLE
151# define _POSIX_VDISABLE ((unsigned char) -1)
152#endif /* _POSIX_VDISABLE */
153
154#if !defined(CREPRINT) && defined(CRPRNT)
155# define CREPRINT CRPRNT
156#endif /* !CREPRINT && CRPRNT */
157#if !defined(CDISCARD) && defined(CFLUSH)

--- 283 unchanged lines hidden (view full) ---

441#define M_OUT 1
442#define M_CTL 2
443#define M_LIN 3
444#define M_CHAR 4
445#define M_NN 5
446
447typedef struct {
448 char *t_name;
449 int t_setmask;
450 int t_clrmask;
451} ttyperm_t[NN_IO][M_NN];
452
453typedef unsigned char ttychar_t[NN_IO][C_NCC];
454
455protected int tty_init __P((EditLine *));
456protected void tty_end __P((EditLine *));
457protected int tty_stty __P((EditLine *, int, char**));
458protected int tty_rawmode __P((EditLine *));

--- 18 unchanged lines hidden ---