summaryrefslogtreecommitdiff
path: root/dviware/beebe/src/clrrow.h
blob: e3f65bcdf695c8fa80143369888fe9b0dfb4647e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* -*-C-*- clrrow.h */
/*-->clrrow*/
/**********************************************************************/
/****************************** clrrow ********************************/
/**********************************************************************/

void
clrrow()	/* clear the current character image row, img_row[] */
{
    register UNSIGN32 *p;
    register UNSIGN16 nwords;

    nwords = img_words;
    for (p = &img_row[nwords-1]; nwords; (--p,--nwords))
        *p = (UNSIGN32)0L;
}