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

  1. /*--------------------------------------*/
  2. /*                    */
  3. /*           CURS_OUT(X,X,X,X)        */
  4. /*                    */
  5. /* Functionality:            */
  6. /*     Gives OUT() cursor control.    */
  7. /* Arguments:                 */
  8. /*    0: Horizontal coordinate    */
  9. /*    1: Vertical coordinate        */
  10. /*    2: Character to be displayed    */
  11. /*    3: Repetition factor        */
  12. /* Returns: Nothing            */
  13. /* Functions used:            */
  14. /*    OUT(),SCR_CURS()        */
  15. /* Author: John Callicotte        */
  16. /* Date created/modified: 09/01/88    */
  17. /*                    */
  18. /*--------------------------------------*/
  19.  
  20. void curs_out(x,y,a,b)
  21. int a,x,y,b;
  22. {
  23.         scr_curs(x,y);
  24.         out(a,b);
  25. }
  26.