home *** CD-ROM | disk | FTP | other *** search
- /*--------------------------------------*/
- /* */
- /* CURS_OUT(X,X,X,X) */
- /* */
- /* Functionality: */
- /* Gives OUT() cursor control. */
- /* Arguments: */
- /* 0: Horizontal coordinate */
- /* 1: Vertical coordinate */
- /* 2: Character to be displayed */
- /* 3: Repetition factor */
- /* Returns: Nothing */
- /* Functions used: */
- /* OUT(),SCR_CURS() */
- /* Author: John Callicotte */
- /* Date created/modified: 09/01/88 */
- /* */
- /*--------------------------------------*/
-
- void curs_out(x,y,a,b)
- int a,x,y,b;
- {
- scr_curs(x,y);
- out(a,b);
- }