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

  1. /*--------------------------------------*/
  2. /*                    */
  3. /*             FOVER(X,X,X)        */
  4. /*                    */
  5. /* Positions the printer for output.    */
  6. /* The first argument is the file de-    */
  7. /* scriptor.  The second is the number    */
  8. /* of crlf's that are to be done.  The  */
  9. /* third is the number of spaces over    */
  10. /* the printhead is to go.        */
  11. /*                    */
  12. /*--------------------------------------*/
  13. # include "stdio.h"
  14. void fover(fd,a,b)
  15. int a,b;
  16. FILE *fd;
  17. {
  18.     fcrlf(fd,a);
  19.     fout(fd,32,b);
  20. }
  21.