⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wdupc.c

📁 详细介绍了一篇关于pci开发的接口芯片
💻 C
字号:
/*  CXL - Copyright (c) 1987-1989 by Mike Smedley - All Rights Reserved  */
/*  WDUPC.C - display a character specified number of times  */

#include "cxlwin.h"

int wdupc(int ch,int count)
{
    /* check for active window */
    if(!_winfo.total) return(_winfo.errno=W_NOACTIVE);

    /* display ch for count times */
    while(count--) wputc(ch);

    /* return with _winfo.errno set by wputc() */
    return(_winfo.errno);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -