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

📄 fcopy.txt

📁 [随书类]Dos6.0源代码
💻 TXT
字号:
SUMMARY fcopy

#include <tools.h>

char *fcopy(pstrSrc, pstrDest)
char *pstrSrc;
char *pstrDest;

DESCRIPTION

fcopy copies the source to the destination preserving attributes and filetimes.

RETURN VALUE

Returns NULL if OK or a char point to the corresponding text of the error.

IMPLEMENTATION


SEE ALSO  fappend fdelete 

NOTE


EXAMPLE

#include <tools.h>

main(c, argv)
int c;
char *argv[];
{
    char *pstr;

    if ((pstr = fcopy("temp.xpl", "temp.hlp")))
            printf("Error: %s\n");
}

⌨️ 快捷键说明

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