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

  1. /*--------------------------------------*/
  2. /*                    */
  3. /*             OVER(X,X,X)        */
  4. /*                    */
  5. /* Positions the cursor for output.    */
  6. /* The first argument is the number    */
  7. /* of crlf's that are to be done.  The  */
  8. /* second is the number of spaces over    */
  9. /* the cursor is to go.            */
  10. /*                    */
  11. /*--------------------------------------*/
  12. void over(a,b)
  13. int a,b;
  14. {
  15.     crlf(a);
  16.     out(32,b);
  17. }
  18.