File: tty.h

package info (click to toggle)
bsign 0.4.4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 420 kB
  • ctags: 647
  • sloc: cpp: 3,019; ansic: 344; makefile: 294; sh: 219
file content (23 lines) | stat: -rw-r--r-- 329 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* tty.h
   $Id: tty.h,v 1.2 1999/05/23 05:58:56 elf Exp $
   
   written by Oscar Levi
   13 Dec 1998

*/

#if !defined (__TTY_H__)
#    define   __TTY_H__

/* ----- Includes */

#include <stdio.h>

/* ----- Globals */


void disable_echo (int fh);
void restore_echo (int fh);
int open_user_tty (void);

#endif  /* __TTY_H__ */