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

📄 display.h

📁 几个应用程序的C语言源代码
💻 H
字号:
/* DISPLAY.H : declarations for functions to support graphic screen
   display of voice patterns.
   Bruce Eckel, Revolution2 Real-Time Consulting.
*/
#include <graphics.h>  /* The Turbo C BGI header file */

/* "printf"-like function for printing messages while
using the BGI in graphics mode. */
void gprintf(char * format, ...);

/* Display the graphics "viewport" values (for debugging) */
void display_viewsettings(struct viewporttype view);

/* Types of scaling for display_series: */
typedef enum { quarter, half, full, twice, quad } scale_factor;

/* Display a series of numbers as dots on the screen: */
void display_series(unsigned * series, int series_size,
	int offset,
	scale_factor vertical_scale_factor,
	scale_factor horizontal_scale_factor,
	int color);

⌨️ 快捷键说明

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