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

  1. /*--------------------------------------*/
  2. /*                    */
  3. /*               BARROW(X)              */
  4. /*                    */
  5. /* Moves the cursor back one place,     */
  6. /* displays the argument to the screen, */
  7. /* and moves the cursor back one place. */
  8. /*                     */
  9. /*--------------------------------------*/
  10. void barrow(a)
  11. int a;
  12. {
  13.         printf("\b%c\b",a);
  14. }
  15.