summaryrefslogtreecommitdiff
path: root/src/dirent/rewinddir.c
blob: f2053008b36c2d8e0b35dd60676cbb0b455a813f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <dirent.h>
#include <unistd.h>
#include "__dirent.h"
#include "libc.h"

void rewinddir(DIR *dir)
{
	LOCK(dir->lock);
	lseek(dir->fd, 0, SEEK_SET);
	dir->buf_pos = dir->buf_end = 0;
	dir->tell = 0;
	UNLOCK(dir->lock);
}