fuck! don't perform ssl handshake for blocked hosts!
[mediator.git] / src / rawtty.h
blob1bd2ba5999d43ccb13d683b2b20065405ab07d17
1 /* coded by Ketmar // Vampire Avalon (psyc://ketmar.no-ip.org/~Ketmar)
2 * Understanding is not required. Only obedience.
4 * This program is free software. It comes without any warranty, to
5 * the extent permitted by applicable law. You can redistribute it
6 * and/or modify it under the terms of the Do What The Fuck You Want
7 * To Public License, Version 2, as published by Sam Hocevar. See
8 * http://sam.zoy.org/wtfpl/COPYING for more details.
9 */
10 #ifndef RAWTTY_H
11 #define RAWTTY_H
14 int is_rawtty (void);
16 /* <0: error; 0: ok */
17 int rawtty_off (void);
18 int rawtty_on (void);
19 int rawtty_set (int raw);
21 int rawtty_is_keyhit (void);
22 int rawtty_waitkey (int to_msec); /* returns boolean 'is_hit'; to_msec <0: infinite; =0: immediate return */
24 int rawtty_width (void);
25 int rawtty_height (void);
28 #endif