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

  1. /*--------------------------------------*/
  2. /*                    */
  3. /*             BSPACE(X)        */
  4. /*                    */
  5. /* Moves the cursor left using the      */
  6. /* argument as the repetition factor.   */
  7. /* The line is not changed.        */
  8. /*                    */
  9. /*--------------------------------------*/
  10. void bspace(a)
  11. int a;
  12. {
  13.         int x,y;
  14.         scr_loc(&x,&y);
  15.         scr_curs(x,y-a);
  16. }
  17.