home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
CLIPPER
/
MISC
/
EMXLIB8F.ZIP
/
EMX
/
LIB
/
IO
/
EAREMOVE.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
|
1993-01-02
|
306 b
|
15 lines
/* earemove.c (emx+gcc) -- Copyright (c) 1993 by Eberhard Mattes */
#include <stdlib.h>
#include <sys/ea.h>
int _ea_remove (const char *path, int handle, const char *name)
{
struct _ea ea;
ea.flags = 0;
ea.size = 0;
ea.value = NULL;
return (_ea_put (&ea, path, handle, name));
}