home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 1
/
FishNMoreVol1.bin
/
more
/
code_examples
/
librar
/
over.c
< prev
next >
Wrap
Text File
|
1989-02-08
|
407b
|
18 lines
/*--------------------------------------*/
/* */
/* OVER(X,X,X) */
/* */
/* Positions the cursor for output. */
/* The first argument is the number */
/* of crlf's that are to be done. The */
/* second is the number of spaces over */
/* the cursor is to go. */
/* */
/*--------------------------------------*/
void over(a,b)
int a,b;
{
crlf(a);
out(32,b);
}