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

📄 bit.h

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 H
字号:
/*	bit.h	4.1	83/03/09	*//* * Bit matrix manipulations for font editor. * * General structure of a bit matrix: each row is packed into as few * bytes as possible, taking the bits from left to right within bytes. * The matrix is a sequence of such rows, i.e. up to 7 bits are wasted * at the end of each row. */#include <stdio.h>typedef char *	bitmat;#ifdef TRACE	FILE *trace;#endif#define max(x,y)	((x) > (y) ?   (x)  : (y))#define min(x,y)	((x) < (y) ?   (x)  : (y))

⌨️ 快捷键说明

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