forked from KolibriOS/kolibrios
14 lines
217 B
C
14 lines
217 B
C
|
/*
|
||
|
* Copyright (C) KolibriOS team 2024. All rights reserved.
|
||
|
* Distributed under terms of the GNU General Public License
|
||
|
*/
|
||
|
|
||
|
#include <dirent.h>
|
||
|
|
||
|
void
|
||
|
_DEFUN(rewinddir, (dirp),
|
||
|
DIR *dirp)
|
||
|
{
|
||
|
dirp->pos = 0;
|
||
|
}
|