gint/src/fs/seekdir.c

8 lines
108 B
C

#include <dirent.h>
#include <unistd.h>
void seekdir(DIR *dp, long loc)
{
lseek(dp->fd, loc, SEEK_SET);
}