home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
alde_c
/
misc
/
func
/
math
/
c.lbr
/
UNLINK.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1988-07-21
|
256 b
|
13 lines
#include "io.h"
unlink(name)
char *name;
{
struct fcb delfcb;
fcbinit(name,&delfcb);
return bdos(DELFIL,&delfcb);
}