File: termio.h

package info (click to toggle)
utalk 1.0.2-2
  • links: PTS
  • area: main
  • in suites: bookworm, sid
  • size: 404 kB
  • sloc: ansic: 5,649; makefile: 119
file content (24 lines) | stat: -rw-r--r-- 567 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* utalk, a UDP-based "talk" replacement, using srdp
   Copyright (C) 1995 Roger Espel Llima

   termio.h

   Started: 19 Oct 95 by <roger.espel.llima@pobox.com>

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation. See the file LICENSE for details.
*/

#ifndef TERMIO_H
#define TERMIO_H

#define SET_RAW 0
#define SET_COOKED 1

extern void get_screensize(void);
extern void init_termio(void);
extern void settty(int how, int drain);

#endif