home *** CD-ROM | disk | FTP | other *** search
- /*
- ** wrepc.c
- **
- ** Pictor, Version 1.51, Copyright (c) 1992-94 SoftCircuits
- ** Redistributed by permission.
- */
-
- #include "pictor.h"
-
- /*
- ** Prints a character to the current window for the
- ** specified number of columns.
- */
- void wrepc(char c,int count)
- {
- int i;
-
- for(i = 0;i < count;i++)
- wputc(c);
-
- } /* wrepc */
-