home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / IO / EAREMOVE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  306 b   |  15 lines

  1. /* earemove.c (emx+gcc) -- Copyright (c) 1993 by Eberhard Mattes */
  2.  
  3. #include <stdlib.h>
  4. #include <sys/ea.h>
  5.  
  6. int _ea_remove (const char *path, int handle, const char *name)
  7. {
  8.   struct _ea ea;
  9.  
  10.   ea.flags = 0;
  11.   ea.size = 0;
  12.   ea.value = NULL;
  13.   return (_ea_put (&ea, path, handle, name));
  14. }
  15.