File EMUL.C:
*  Function :   ScreenEmChar

*  Called by    :   ScreenEm()

static int ScreenEmChar(SCREEN FAR *fpScr,unsigned char c)

}   /* end ScreenEmChar() */

void FAR PASCAL ScreenEm(LPSTR c,int len,HSCREEN hsScr)

                    ScreenEmChar(fpScr,0x1b); /* put the ESC character into the Screen */

                    ScreenEmChar(fpScr,*c);   /* put the next character into the Screen */

}   /* end ScreenEm() */

