/* * Copyright (c) 1980 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */ #ifndef lint static char sccsid[] = "@(#)setmat.c 5.1 (Berkeley) 4/26/85"; #endif not lint /* * setmat: set the value in m[r, c] to nval. */ #include "bit.h" setmat(m, rows, cols, r, c, nval) bitmat m; int rows, cols, r, c, nval; { register int offset, thisbit; if (r<0 || c<0 || r>=rows || c>=cols) { #ifdef TRACE if (trace) fprintf(trace, "setmat range error: (%d, %d) <- %d in a (%d, %d) matrix %x\n", r, c, nval, rows, cols, m); #endif return; } offset = r*((cols+7)>>3) + (c>>3); thisbit = 0x80 >> (c&7); if (nval) m[offset] |= thisbit; else m[offset] &= ~thisbit; }