home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixtools / unixlib / clib / sys / h / tty < prev    next >
Encoding:
Text File  |  1992-07-21  |  333 b   |  17 lines

  1. /* sys/tty.h (c) Copyright 1990 H.Rogers */
  2.  
  3. #ifndef __SYS_TTY_H
  4. #define __SYS_TTY_H
  5.  
  6. extern int    __ttyread(struct termio *,int,void *,int);
  7. extern int    __ttywrite(struct termio *,int,void *,int);
  8.  
  9. extern void    __ttyout(int);
  10. extern int    __ttyin(void);
  11. extern int    __ttyscan(int);
  12.  
  13. extern char    *__tbuf,*__tptr;
  14. extern int    __tcnt;
  15.  
  16. #endif
  17.