📄 editgets.h
字号:
/*** jgets() - line input w/editing*/#ifndef EDITGETS__H#define EDITGETS__H#include "minmax.h"extern int TabSize;/*** Password mode:**** 0 - Normal operation** 1 - Conventional password mode - '*' is echoed for all characters,** only ESC, ENTER, BACKSPC, and CTLHOME are active.** 2 - Secure password mode - same as above except random characters are** displayed rather than '*'s to distract snoops from watching the keys.*/extern int password_mode;/*** Line editing formatted text entry function.*/int editgets(char *s, int maxlen, char *string);/*** Get a string of unknown length*/char *getstring(void);#endif /* EDITGETS__H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -