Import upstream version 1.27
[debian/tar] / gnu / rewinddir.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Restart reading the entries of a directory from the beginning.
4    Copyright (C) 2011-2013 Free Software Foundation, Inc.
5
6    This program is free software: you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 #include <config.h>
20
21 /* Specification.  */
22 #include <dirent.h>
23
24 #include <errno.h>
25
26 #include "dirent-private.h"
27
28 void
29 rewinddir (DIR *dirp)
30 {
31   /* Like in closedir().  */
32   if (dirp->current != INVALID_HANDLE_VALUE)
33     FindClose (dirp->current);
34
35   /* Like in opendir().  */
36   dirp->status = -1;
37   dirp->current = FindFirstFile (dirp->dir_name_mask, &dirp->entry);
38   if (dirp->current == INVALID_HANDLE_VALUE)
39     {
40       switch (GetLastError ())
41         {
42         case ERROR_FILE_NOT_FOUND:
43           dirp->status = -2;
44           break;
45         default:
46           /* Save the error code for the next readdir() call.  */
47           dirp->status = ENOENT;
48           break;
49         }
50     }
51 }