1*48764Sbostic /*- 2*48764Sbostic * Copyright (c) 1988 The Regents of the University of California. 3*48764Sbostic * All rights reserved. 4*48764Sbostic * 5*48764Sbostic * %sccs.include.redist.c% 6*48764Sbostic * 7*48764Sbostic * @(#)telextrn.h 4.2 (Berkeley) 04/26/91 8*48764Sbostic */ 9*48764Sbostic 1036285Sminshall /* 1136285Sminshall * Definitions of external routines and variables for tn3270 1236285Sminshall */ 1336285Sminshall 1436285Sminshall /* 1536285Sminshall * Pieces exported from the telnet susbsection. 1636285Sminshall */ 1736285Sminshall 1836285Sminshall extern int 1936285Sminshall #if defined(unix) 2036285Sminshall HaveInput, 2136285Sminshall #endif /* defined(unix) */ 2236285Sminshall tout, 2336285Sminshall tin; 2436285Sminshall 2536285Sminshall extern char *transcom; 2636285Sminshall 2736285Sminshall extern int 2836285Sminshall netflush(), 2936285Sminshall quit(), 3036285Sminshall TtyChars(), 3136285Sminshall DataToTerminal(); 3236285Sminshall 3336285Sminshall extern void 3436285Sminshall outputPurge(), 3536285Sminshall EmptyTerminal(), 3636285Sminshall StringToTerminal(), 3736285Sminshall _putchar(), 3836285Sminshall ExitPerror(), 3936285Sminshall setcommandmode(); 4036285Sminshall 4136285Sminshall /* 4236285Sminshall * Pieces exported from other random locations. 4336285Sminshall */ 4436285Sminshall 4536285Sminshall extern char 4636285Sminshall *strsave(); 47