home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c010
/
1.ddi
/
FLILIB3.ZIP
/
FLISRC3.ZIP
/
JDELETE.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
|
1989-11-16
|
310 b
|
18 lines
#include "jlib.h"
/* Delete a file if possible. Don't complain if it's not there. */
Boolean dos_delete (title)
char *title;
{
union i86_regs reg;
reg.b.ah = 0x41;
reg.w.dx = i86_ptr_offset(title);
reg.w.ds = i86_ptr_seg(title);
if (i86_sysint(0x21,®,®)&1)
return(0);
return(1);
}