emptyrow.c

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 24 行

C
24
字号
/*	emptyrow.c	4.1	83/03/09	*//* * emptyrow: returns true if row r of m is all zeros. * * Note that we assume the garbage at the end of the * row is all zeros. */#include "bit.h"emptyrow(m, rows, cols, r)bitmat m;int rows, cols, r;{	char *top, *bot;	bot = &m[r*((cols+7)>>3)];	top = bot + ((cols-1) >> 3);	while (bot <= top)		if (*bot++)			return(0);	return (1);}

⌨️ 快捷键说明

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