2016-09-06 13:16:38 +02:00
|
|
|
/**
|
2016-09-06 22:25:54 +02:00
|
|
|
* Authors.....: Jens Steube <jens.steube@gmail.com>
|
|
|
|
* Gabriele Gristina <matrix@hashcat.net>
|
|
|
|
*
|
2016-09-06 13:16:38 +02:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2016-09-06 18:44:05 +02:00
|
|
|
#ifndef _TERMINAL_H
|
|
|
|
#define _TERMINAL_H
|
2016-09-06 13:16:38 +02:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2016-09-07 22:29:57 +02:00
|
|
|
#if defined (_POSIX)
|
2016-09-06 13:16:38 +02:00
|
|
|
#include <termios.h>
|
2016-09-07 22:29:57 +02:00
|
|
|
#if defined (__APPLE__)
|
2016-09-06 22:25:54 +02:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#endif // __APPLE__
|
2016-09-06 13:16:38 +02:00
|
|
|
#endif // _POSIX
|
|
|
|
|
2016-09-07 22:29:57 +02:00
|
|
|
#if defined (_WIN)
|
2016-09-06 13:16:38 +02:00
|
|
|
#include <windows.h>
|
|
|
|
#endif // _WIN
|
|
|
|
|
2016-09-08 09:21:25 +02:00
|
|
|
#if defined (_WIN)
|
|
|
|
void SetConsoleWindowSize (const int x);
|
|
|
|
#endif
|
|
|
|
|
2016-09-06 13:16:38 +02:00
|
|
|
int tty_break();
|
|
|
|
int tty_getchar();
|
|
|
|
int tty_fix();
|
2016-09-06 18:44:05 +02:00
|
|
|
|
|
|
|
#endif // _TERMINAL_H
|