📄 tty.h
字号:
/* * This file is part of John the Ripper password cracker, * Copyright (c) 1996-99 by Solar Designer *//* * Terminal support routines. */#ifndef _JOHN_TTY_H#define _JOHN_TTY_H/* * Initializes the terminal for unbuffered non-blocking input. Also registers * tty_done() via atexit(). */extern void tty_init(void);/* * Reads a character, returns -1 if no data available or on error. */extern int tty_getchar(void);/* * Restores the terminal parameters and closes the file descriptor. */extern void tty_done(void);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -