www.pudn.com > 文件恢复及修补 C 语言源程序.zip > UNLINK.C


 
#include "io.h" 
 
unlink(name) 
char *name; 
{ 
        struct fcb delfcb; 
 
        fcbinit(name,&delfcb); 
        return bdos(DELFIL,&delfcb); 
}