mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-05-29 06:55:08 +02:00
7 lines
108 B
C
7 lines
108 B
C
#include <dirent.h>
|
|
#include <unistd.h>
|
|
|
|
void seekdir(DIR *dp, long loc)
|
|
{
|
|
lseek(dp->fd, loc, SEEK_SET);
|
|
}
|