1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-15 20:39:17 +00:00
hashcat/include/terminal.h

24 lines
335 B
C

/**
* Author......: Jens Steube <jens.steube@gmail.com>
* License.....: MIT
*/
#pragma once
#include <stdio.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#ifdef _POSIX
#include <termios.h>
#endif // _POSIX
#ifdef _WIN
#include <windows.h>
#endif // _WIN
int tty_break();
int tty_getchar();
int tty_fix();