home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 1
/
FishNMoreVol1.bin
/
more
/
code_examples
/
librar
/
fover.c
< prev
next >
Wrap
Text File
|
1989-02-08
|
499b
|
21 lines
/*--------------------------------------*/
/* */
/* FOVER(X,X,X) */
/* */
/* Positions the printer for output. */
/* The first argument is the file de- */
/* scriptor. The second is the number */
/* of crlf's that are to be done. The */
/* third is the number of spaces over */
/* the printhead is to go. */
/* */
/*--------------------------------------*/
# include "stdio.h"
void fover(fd,a,b)
int a,b;
FILE *fd;
{
fcrlf(fd,a);
fout(fd,32,b);
}