⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 editgets.h

📁 国外网站上的一些精典的C程序
💻 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 + -