lib.h

来自「Due to an increase in demand for and que」· C头文件 代码 · 共 23 行

H
23
字号
/*
 * 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 + =
减小字号Ctrl + -
显示快捷键?