home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume3
/
lib_term
/
TermRewind.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1986-11-30
|
209 b
|
21 lines
#include <stdio.h>
void TermRewind(count)
int count;
/*
void TermRewind(count)
int count;
Backs up the cursor 'count' spaces
*/
{
int loop;
for (loop = 0; loop < count; loop++)
printf("\b");
}