www.pudn.com > 日期、菜单、字符串的C函数.rar > WRITEC.C
/* *** writec.c *** */
/* */
/* IBM-PC microsoft "C" under PC-DOS v2.0 */
/* */
/* Function to write a character to the screen using a DOS function. */
/* */
/* Written by L. Cuthbertson, March 1984. */
/* */
/*********************************************************************/
/* */
int writec(c)
char c;
{
int iret,bdos();
iret = bdos(2,c);
return (iret);
}