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

📄 mat.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
/*	mat.c	4.1	83/03/09	*//* * mat: retrieve the value in m[r, c]. * rows and cols are the size of the matrix in all these routines. */#include "bit.h"intmat(m, rows, cols, r, c)register bitmat m;register int c;int rows, cols, r;{	register int thisbyte;	thisbyte = m[r*((cols+7)>>3) + (c>>3)] & 0xff;	thisbyte &= 0x80 >> (c&7);	return (thisbyte != 0);}

⌨️ 快捷键说明

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