home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 1 / FishNMoreVol1.bin / more / code_examples / librar / blankfil.c < prev    next >
Text File  |  1989-02-08  |  499b  |  20 lines

  1. /*--------------------------------------*/
  2. /*                    */
  3. /*            BLANKFILL(X,X)        */
  4. /*                    */
  5. /* Displays characters and then returns */
  6. /* the cursor to the front of the dis-  */
  7. /* play. The first argument is the char-*/
  8. /* acter to be displayed. The second    */
  9. /* argument is the repetition factor.   */
  10. /*                    */
  11. /*--------------------------------------*/
  12. void blankfill(a,b)
  13. int a,b;
  14. {
  15.         int x,y;
  16.         scr_loc(&x,&y);
  17.         out(a,b);
  18.         scr_curs(x,y);
  19. }
  20.