home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / tex / files / !tex / TeXsource / beebe / h / CLRROW < prev    next >
Encoding:
Text File  |  1990-05-18  |  495 b   |  17 lines

  1. /* -*-C-*- clrrow.h */
  2. /*-->clrrow*/
  3. /**********************************************************************/
  4. /****************************** clrrow ********************************/
  5. /**********************************************************************/
  6.  
  7. void
  8. clrrow()    /* clear the current character image row, img_row[] */
  9. {
  10.     register UNSIGN32 *p;
  11.     register UNSIGN16 nwords;
  12.  
  13.     nwords = img_words;
  14.     for (p = &img_row[nwords-1]; nwords; (--p,--nwords))
  15.         *p = (UNSIGN32)0L;
  16. }
  17.