home *** CD-ROM | disk | FTP | other *** search
- /*
- ** vrepa.c
- **
- ** Pictor, Version 1.51, Copyright (c) 1992-94 SoftCircuits
- ** Redistributed by permission.
- */
-
- #include "pictor.h"
-
- /*
- ** Prints attribute-only at the current video position for the
- ** specified number of columns.
- */
- void vrepa(int attribute,int count)
- {
- int i;
-
- for(i = 0;i < count;i++)
- vputa(attribute);
-
- } /* vrepa */
-