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

📄 lib.h

📁 Due to an increase in demand for and questions about direct disk access for Micrososft platforms, a
💻 H
字号:
/*
 * lib.h    misc. stuff
 *
 * This file is part of the BETA version of DISKLIB
 * Copyright (C) 1998, Gregg Jennings
 *
 * See README.TXT for information about re-distribution.
 * See DISKLIB.TXT for information about usage.
 *
 */


extern int confirm(void);
extern int ask(const char *str);
extern void die(const char *msg, const char *fmt, int arg);

#ifdef _WIN32
extern int kbhit(void);         /* win32\wlib.c */
extern int getch(void);         /* " */
#else
#include <conio.h>              /* getch(), kbhit() */
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -