mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Add versionsort_r(3).
This commit is contained in:
parent
12652fe557
commit
bcf0720a59
3 changed files with 32 additions and 0 deletions
|
@ -48,6 +48,7 @@ dirent/dunregister.o \
|
|||
dirent/readdir.o \
|
||||
dirent/rewinddir.o \
|
||||
dirent/versionsort.o \
|
||||
dirent/versionsort_r.o \
|
||||
errno/errno.o \
|
||||
fnmatch/fnmatch.o \
|
||||
inttypes/imaxabs.o \
|
||||
|
|
30
libc/dirent/versionsort_r.cpp
Normal file
30
libc/dirent/versionsort_r.cpp
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*******************************************************************************
|
||||
|
||||
Copyright(C) Jonas 'Sortie' Termansen 2014.
|
||||
|
||||
This file is part of the Sortix C Library.
|
||||
|
||||
The Sortix C Library is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Lesser General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or (at your
|
||||
option) any later version.
|
||||
|
||||
The Sortix C Library is distributed in the hope that it will be useful, but
|
||||
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
||||
License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
dirent/versionsort_r.cpp
|
||||
Compare directory entries using strverscmp.
|
||||
|
||||
*******************************************************************************/
|
||||
|
||||
#include <dirent.h>
|
||||
|
||||
extern "C" int versionsort_r(const struct dirent** a, const struct dirent** b, void*)
|
||||
{
|
||||
return versionsort(a, b);
|
||||
}
|
|
@ -105,6 +105,7 @@ int scandir(const char*, struct dirent***, int (*)(const struct dirent*),
|
|||
/* TODO: seekdir */
|
||||
/* TODO: telldir */
|
||||
int versionsort(const struct dirent**, const struct dirent**);
|
||||
int versionsort_r(const struct dirent**, const struct dirent**, void*);
|
||||
|
||||
#if defined(_SORTIX_SOURCE)
|
||||
void dregister(DIR* dir);
|
||||
|
|
Loading…
Reference in a new issue