1998-02-27 07:54:42 +03:00
|
|
|
/* Include file to use opendir/closedir/readdir */
|
|
|
|
|
|
|
|
#ifndef __FS_H
|
|
|
|
#define __FS_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#ifndef MAXPATHLEN
|
|
|
|
# define MC_MAXPATHLEN 4096
|
|
|
|
#else
|
|
|
|
# define MC_MAXPATHLEN MAXPATHLEN
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* unistd.h defines _POSIX_VERSION on POSIX.1 systems. */
|
2002-01-21 23:47:05 +03:00
|
|
|
#ifdef HAVE_DIRENT_H
|
1998-02-27 07:54:42 +03:00
|
|
|
# include <dirent.h>
|
|
|
|
# define NLENGTH(dirent) (strlen ((dirent)->d_name))
|
|
|
|
# define DIRENT_LENGTH_COMPUTED 1
|
|
|
|
#else
|
|
|
|
# define dirent direct
|
|
|
|
# define NLENGTH(dirent) ((dirent)->d_namlen)
|
|
|
|
|
|
|
|
# ifdef HAVE_SYS_NDIR_H
|
|
|
|
# include <sys/ndir.h>
|
|
|
|
# endif /* HAVE_SYS_NDIR_H */
|
|
|
|
|
|
|
|
# ifdef HAVE_SYS_DIR_H
|
|
|
|
# include <sys/dir.h>
|
|
|
|
# endif /* HAVE_SYS_DIR_H */
|
|
|
|
|
|
|
|
# ifdef HAVE_NDIR_H
|
|
|
|
# include <ndir.h>
|
|
|
|
# endif /* HAVE_NDIR_H */
|
|
|
|
#endif /* not (HAVE_DIRENT_H or _POSIX_VERSION) */
|
|
|
|
|
|
|
|
#endif
|