home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
223_01
/
unlink.c
< prev
next >
Wrap
Text File
|
1979-12-31
|
512b
|
21 lines
/*
** unlink(name) char *name; by F.A.Scacchitti 10/86
*/
#define NOCCARGC
#include <stdio.h>
static FILE fd;
unlink(name) char *name; {
if((fd = fopen(name, "r")) != NULL){
bdos(19,fd);
freeio(fd);
return(TRUE);
}else{
return(FALSE);
}
}