#include <sys/types.h>
|
#include <dirent.h>
|
int
scandir (const char *dirname, struct dirent ***namelist, int \*(lp*select\*(rp\*(lpstruct dirent *\*(rp, int \*(lp*compar\*(rp\*(lpconst void *, const void *\*(rp); |
int
alphasort (const void *d1, const void *d2); |
The select argument is a pointer to a user supplied subroutine which is called by scandir to select which entries are to be included in the array. The select routine is passed a pointer to a directory entry and should return a non-zero value if the directory entry is to be included in the array. If select is null, then all the directory entries will be included.
The compar argument is a pointer to a user supplied subroutine which is passed to qsort to sort the completed array. If this pointer is null, the array is not sorted.
The alphasort function is a routine which can be used for the compar argument to sort the array alphabetically.
The memory allocated for the array can be deallocated with free (see malloc, by freeing each pointer in the array and then the array itself.
The scandir and alphasort functions appeared in BSD 4.2.Feedback
For additional information or queries on this page send feedback
© 2008 Nokia Corporation. All rights reserved. This documentation can be used in the connection with this Product to help and support the user. |