home *** CD-ROM | disk | FTP | other *** search
- /*--------------------------------------*/
- /* */
- /* BARROW(X) */
- /* */
- /* Moves the cursor back one place, */
- /* displays the argument to the screen, */
- /* and moves the cursor back one place. */
- /* */
- /*--------------------------------------*/
- void barrow(a)
- int a;
- {
- printf("\b%c\b",a);
- }