fcopy.txt

来自「dos 1.0 其中包含quick basic源代码、内存管理himem emm」· 文本 代码 · 共 38 行

TXT
38
字号
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 + =
减小字号Ctrl + -
显示快捷键?