15 lines
240 B
C
15 lines
240 B
C
|
/*
|
||
|
* Copyright (C) KolibriOS team 2024. All rights reserved.
|
||
|
* Distributed under terms of the GNU General Public License
|
||
|
*/
|
||
|
|
||
|
#include <dirent.h>
|
||
|
|
||
|
void
|
||
|
_DEFUN(seekdir, (dirp, loc),
|
||
|
DIR *dirp _AND
|
||
|
long loc)
|
||
|
{
|
||
|
dirp->pos = loc;
|
||
|
}
|