]> pd.if.org Git - pdclib/blob - platform/example/functions/_PDCLIB/remove.c
Removed the $Name$ tags (not supported by SVN). Added $Id$ to Makefile / text files.
[pdclib] / platform / example / functions / _PDCLIB / remove.c
1 /* $Id$ */
2
3 /* _PDCLIB_remove( const char * )
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 /* This is an example implementation of _PDCLIB_remove() (declared in
10    _PDCLIB_glue.h), fit for use in POSIX kernels.
11    NOTE: Linux is *not* POSIX-compliant in this, as it sets EISDIR instead of
12    EPERM if you try to unlink a directory. Check the manpage for unlink(2).
13 */
14
15 #ifndef REGTEST
16 #include <_PDCLIB_glue.h>
17 #include <errno.h>
18 #include <unistd.h>
19
20 int _PDCLIB_remove( const char * filename )
21 {
22     int prev_errno = errno;
23     int rc;
24     errno = 0;
25     if ( ( ( rc = unlink( filename ) ) != 0 ) && ( errno == EPERM ) )
26     {
27         rc = rmdir( filename );
28     }
29     errno = prev_errno;
30     return rc;
31 }
32
33 #endif
34
35 #ifdef TEST
36 #include <_PDCLIB_test.h>
37
38 int main( void )
39 {
40     TESTCASE( NO_TESTDRIVER );
41     return TEST_RESULTS;
42 }
43
44 #endif