New modules 'opendir', 'readdir', 'rewinddir', 'closedir'.
[gnulib.git] / lib / closedir.c
1 /* Stop reading the entries of a directory.
2    Copyright (C) 2006-2011 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 #include <config.h>
18
19 /* Specification.  */
20 #include <dirent.h>
21
22 #if HAVE_CLOSEDIR
23
24 /* Override closedir(), to keep track of the open file descriptors.
25    Needed because there is a function dirfd().  */
26
27 #else
28
29 # include <stdlib.h>
30
31 # include "dirent-private.h"
32
33 #endif
34
35 int
36 closedir (DIR *dirp)
37 {
38 # if REPLACE_FCHDIR
39   int fd = dirfd (dirp);
40 # endif
41   int retval;
42
43 #if HAVE_CLOSEDIR
44 # undef closedir
45
46   retval = closedir (dirp);
47
48 #else
49
50   if (dirp->current != INVALID_HANDLE_VALUE)
51     FindClose (dirp->current);
52   free (dirp);
53
54   retval = 0;
55
56 #endif
57
58 #if REPLACE_FCHDIR
59   if (retval >= 0)
60     _gl_unregister_fd (fd);
61 #endif
62   return retval;
63 }